html {
    scroll-behavior: smooth;
}
.bg-red {
    background: #ed1d23;
}

.bg-red::after {
    background: #ed1d23;
}

.bg-dark {
    background: #000000;
}

.wrap-bg {
    background: #202020;
}

.btn.btn-primary-new {
    background: #ed1d23;
    border: 1px solid #ed1d23;
    color: #fff;
}

.btn.btn-primary-new:hover {
    border: 1px solid #ed1d23;
    background: transparent;
    color: #ffffff;
}

.btn.btn-primary-new.btn-outline-primary {
    border: 1px solid #ed1d23;
    background: transparent;
    color: #ed1d23;
}

.btn.btn-primary-new.btn-outline-primary:hover {
    border: 1px solid transparent;
    background: #ed1d23;
    color: #fff;
}

.heading-section-new .subheading-new {
    font-size: 12px;
    display: block;
    font-weight: 700;
    color: #ed1d23;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.loading-modal {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.loading-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    text-align: center;
    animation: scaleIn 0.3s ease;
    max-width: 90%;
    width: 400px;
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-box h2 {
    margin: 10px 0;
    font-size: 22px;
    color: #333;
}

.loading-box p {
    font-size: 15px;
    color: #666;
}

.spinnerAppointment {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spinAppointment 1s linear infinite;
}

@keyframes spinAppointment {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    #randevu-al .row {
        max-height: none !important;
    }
    #randevu-al .col-md-6,
    #randevu-al .col-md-12 {
        max-height: none !important;
    }
}
