body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.column {
    display: flex;
    flex-direction: column;
}

.clock {
    position: relative;
    width: 500px;
    height: 500px;
    background: url('./images/DualDestinyClock.png') no-repeat center;
    background-size: cover;
    border-radius: 50%;
}

.clockButton {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    user-select: none; /* Make text unselectable */
}

.UNSELECTED {
    background-color: rgba(255, 255, 255, 1);
    color: black;    
}

.SELECTEDLOCAL {
    background-color: rgba(0, 0, 255, 1);
    color: white;
}

.SELECTEDREMOTE {
    background-color: rgba(255, 0, 0, 1);
    color: white;
}

.SELECTEDREMOTE.SELECTEDLOCAL {
    background-color: rgba(0, 255, 0, 1);
    color: white;
}

.HIDDEN {
    display: none;
}

#button-1 { top: 12%; left: 67%; }
#button-2 { top: 25%; left: 78%; }
#button-3 { top: 45%; left: 85%; }
#button-4 { top: 65%; left: 78%; }
#button-5 { top: 79%; left: 67%; }
#button-6 { top: 85%; left: 45%; }
#button-7 { top: 79%; left: 24%; }
#button-8 { top: 65%; left: 12%; }
#button-9 { top: 45%; left: 5%; }
#button-10 { top: 25%; left: 12%; }
#button-11 { top: 12%; left: 24%; }
#button-12 { top: 7%; left: 47%; }

.RoNShapeButton {
    /* Add styles for the buttons here */
    display: flex;
}