﻿/* استایل های ساعت*/
.containerMdl {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-select-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.time-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
}


.clock-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.analog-clock {
    position: relative;
    width: 140px;
    height: 140px;
    border: 5px solid #333;
    border-radius: 50%;
    margin: 10px auto;
    background: #fff;
}


.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    z-index: 2;
}

.hour-hand {
    width: 6px;
    height: 40px;
    background: #000;
}

.minute-hand {
    width: 4px;
    height: 55px;
    background: #000;
}

.second-hand {
    width: 2px;
    height: 60px;
    background: red;
}


.center-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clock-time {
    margin-top: 8px;
    font-size: 14px;
    font-weight: bold;
}

.numbers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -6px;
    left: -2px;
    z-index: 1;
}

    .numbers span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: rotate(calc(30deg * var(--i))) translateY(-48px) rotate(calc(-30deg * var(--i)));
        font-size: 11px;
        font-weight: 600;
        color: #222;
    }
