.modalh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeInh 0.3s forwards;
}

.modal-contenth {
    background: white;
    border-radius: 10px;
    text-align: center;
    padding: 40px 20px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideInh 0.5s forwards;
}

/* SVG belgisi */
.svg-boxh {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
}

/* Dumaloq animatsiya */
.circularh {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    top: -20px; /* Dumaloqni yuqoriga ko'chirish */
}

.circularh circle.pathh {
    stroke: orange;
    stroke-dasharray: 330;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: draw-circleh 0.7s ease-out;
}

/* Ogohlantirish belgisi */
.warningh {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 10px; /* Ogohlantirish belgisi joyi */
    left: 50%;
    transform: translateX(-50%);
}

.warningh .first-lineh,
.warningh .second-lineh {
    stroke: orange;
    stroke-width: 4;
    stroke-linecap: round;
    animation: draw-lineh 1s ease-out;
}

@keyframes draw-lineh {
    0% {
        stroke-dasharray: 0, 56;
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dasharray: 56, 330;
        stroke-dashoffset: 0;
    }
}

@keyframes draw-circleh {
    0% {
        stroke-dasharray: 0, 330;
        opacity: 1;
    }
    100% {
        opacity: 0.4;
    }
}

/* Matn va tugma */
h1h {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

.close-btnh {
    background: #4584CB; /* Tugma rangi */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 30px;
}

.close-btnh:hover {
    background: #3569A3; /* Hover holati */
}

/* Animatsiyalar */
@keyframes fadeInh {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInh {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}