
#calendar {
    width: 100%;
}

.flatpickr-calendar.inline {
    width: 100% !important;
}


    /* Calendar umumiy width */
.flatpickr-calendar.inline {
    width: 100% !important;
}

/* Ichki containerlar ham 100% */
.flatpickr-calendar .flatpickr-innerContainer,
.flatpickr-calendar .flatpickr-rContainer,
.flatpickr-calendar .flatpickr-days,
.flatpickr-calendar .dayContainer,
.flatpickr-calendar .flatpickr-weekdays,
.flatpickr-calendar .flatpickr-weekdaycontainer {
    width: 100% !important;
    max-width: 100% !important;
}

/* Haftaning kunlari 7 ta teng ustun */
.flatpickr-weekdaycontainer {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr);
}

/* Kunlar ham 7 ustun */
.dayContainer {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr);
}

/* Har bir katak teng bo‘lsin */
.flatpickr-day,
.flatpickr-weekday {
    width: 100% !important;
    max-width: 100% !important;
}
@media (max-width: 768px) {
    .flatpickr-calendar.inline {
        font-size: 14px;
    }
}


.slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.slot-item {
    flex: 0 0 30%;
    border: 1px solid #dee2e6;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}

.slot-item:hover {
    background: #28a745;
    color: white;
    transform: scale(1.05);
}

.slot-item.active {
    background: #28a745;
    color: white;
}

.form-card {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.form-card input,
.form-card select {
    border-radius: 6px;
    height: 45px;
}

.form-card label {
    font-weight: 600;
}


.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-check-label {
    font-weight: 500;
    cursor: pointer;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero-wrap.hero-wrap-2, .hero-wrap.hero-wrap-2 .slider-text {
    height: 300px;
}

.instruction-box {
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.form-check-input {
    width: 22px;
    height: 22px;
    margin-top: 3px;
    cursor: pointer;
}

.form-check-label {
    font-size: 15px;
    line-height: 1.5;
}
#id_full_name {
    text-transform: uppercase;
}
#id_full_name::placeholder {
    text-transform: none; /* placeholder asl holatda */
}
.instruction-link {
    font-weight: 600;
    text-decoration: underline;
}

.instruction-link:hover {
    color: #28a745;
}

    .custom-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #0d6efd;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

/* Checked state */
.custom-checkbox input[type="checkbox"]:checked {
    background-color: #0d6efd;
}

/* Check icon */
.custom-checkbox input[type="checkbox"]:checked::after {
    content: "✔";
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

/* Hover effect */
.custom-checkbox input[type="checkbox"]:hover {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.flatpickr-day:not(.flatpickr-disabled) {
    border: 1px solid green !important;
    }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover { color: rgba(57, 57, 57, 0.9) !important; }
