   body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1, h2 {
    margin: 0 0 20px;
}

.watch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.watch {
    position: relative;
    width: 200px;
    height: 200px;
    border: 2px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.hand {
    position: absolute;
    transform-origin: center bottom;
}

.hour-hand {
    width: 5px;
    height: 50px;
    background-color: red;
    top: 50px;
}

.minute-hand {
    width: 3px;
    height: 70px;
    background-color: blue;
    top: 30px;
}

.numbers {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.numbers::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-align: center;
}

.hour-markers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.minute-markers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hour-marker {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: black;
    top: 48%;
    left: 50%;
    transform-origin: bottom center;
}

.minute-marker {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: gray;
    top: 48%;
    left: 50%;
    transform-origin: bottom center;
}

.number {
    position: absolute;
    transform-origin: center;
    font-size: 18px;
    text-align: center;
}

.number:nth-child(1) { transform: translate(-50%, -50%) rotate(30deg) translate(90px) rotate(-30deg); }
.number:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg) translate(90px) rotate(-60deg); }
.number:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg) translate(90px) rotate(-90deg); }
.number:nth-child(4) { transform: translate(-50%, -50%) rotate(120deg) translate(90px) rotate(-120deg); }
.number:nth-child(5) { transform: translate(-50%, -50%) rotate(150deg) translate(90px) rotate(-150deg); }
.number:nth-child(6) { transform: translate(-50%, -50%) rotate(180deg) translate(90px) rotate(-180deg); }
.number:nth-child(7) { transform: translate(-50%, -50%) rotate(210deg) translate(90px) rotate(-210deg); }
.number:nth-child(8) { transform: translate(-50%, -50%) rotate(240deg) translate(90px) rotate(-240deg); }
.number:nth-child(9) { transform: translate(-50%, -50%) rotate(270deg) translate(90px) rotate(-270deg); }
.number:nth-child(10) { transform: translate(-50%, -50%) rotate(300deg) translate(90px) rotate(-300deg); }
.number:nth-child(11) { transform: translate(-50%, -50%) rotate(330deg) translate(90px) rotate(-330deg); }
.number:nth-child(12) { transform: translate(-50%, -50%) rotate(360deg) translate(90px) rotate(-360deg); }

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 1000;
}

.popup img {
    max-width: 100%;
    height: auto;
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #0056b3;
}

.score-container {
    margin-top: 20px;
}

.legend {
    margin-top: 10px;
}

.hour-hand-color {
    color: red;
}

.minute-hand-color {
    color: blue;
}


#user-hour, #user-minute {
    width: 90px; 
    font-size: 18px; /* Increase font size for better readability */
    padding: 5px; /* Add padding for better spacing */
    text-align: center; /* Center align the text */
    margin: 2px; /* Add some margin around the input fields */
}

#user-hour {
    color: red; 
}

#user-minute {
    color: blue;
}
