/* countdown.css */
.timer-title {
    color: #000000; 
    font-weight: 500;
    margin-bottom: 2rem;
}

/* สไตล์สำหรับวงกลม */
.circle-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.svg-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* หมุนให้จุดเริ่มต้นเริ่มจากด้านบน */
}

.ring-bg {
    fill: none;
    stroke: #e6e6e6; /* สีเทาพื้นหลังวงกลม */
    stroke-width: 6;
}

.ring-progress {
    fill: none;
    stroke: #6366f1; /* สีของเส้นนับถอยหลัง */
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s linear;
}

.timer-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #6366f1;
    line-height: 1;
}

.timer-label {
    color: #000000;
    font-size: 1.5rem;
    margin-top: 15px;
    font-weight: 500;
}

.timer-label{
    margin-top: 18px;
    font-size: 20px;
    font-weight: 500;
    color: #111827;
}

.timer-label-dark{
    color: #f3f4f6;
}
