/* Show it is fixed to the top */
body {
    min-height: 81rem;
    padding-top: 7.5rem;
    background: linear-gradient(to bottom right, #addde3e0 0%, #fdfdfd00 15%, transparent 15%, transparent 100%);
}

.logo-padding {
    padding-left: 10px !important;
}
.new-nav-bar {
    background-color: #fff !important;
    border-bottom: solid 1px #d9d9d9;
    border-radius: 0;
    box-shadow: 0 0 12px 0 rgba(0,0,0,.1);
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; /* Optional: Match the theme */
    padding: 10px;
}
.img-login {
    width: 80%
}
.contact-form {
    border: 1px solid #dddddd;
    padding: 20px;
    border-radius: 11px;
}
.amount-error-message {
    display: none;
    color: red;
    font-size: 0.875rem;
}
.text-sm{
    font-size:small;
}
.payment-form-box {
    border: 1px solid #dadada;
    padding-top: 13px;
    padding-bottom: 13px;
    background-color: #fafafa38;
}
.bd-callout-info {
    --bd-callout-color: var(--bs-info-text-emphasis);
    --bd-callout-bg: var(--bs-info-bg-subtle);
    --bd-callout-border: var(--bs-info-border-subtle);
}

.bd-callout {
    --bs-link-color-rgb: var(--bd-callout-link);
    --bs-code-color: var(--bd-callout-code-color);
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--bd-callout-color, inherit);
    background-color: var(--bd-callout-bg, var(--bs-gray-100));
    border-left: 0.25rem solid var(--bd-callout-border, var(--bs-gray-300));
}

/* Overlay styling */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Spinner styling */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*.custome-btn {
    background: linear-gradient(135deg, #667eea, #03719e);
    color: #fff;
   
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    font-size:medium !important;
}
    .custome-btn:hover, .custome-btn:focus {
        background: linear-gradient(135deg, #03719e,#667eea);
    }*/

.custome-btn {
    background: linear-gradient(135deg, #667eea, #03719e);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: medium !important;
    font-weight: 500;
    
    cursor: pointer;
    outline: none;
    /* Smooth animations */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: background 0.4s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

    /* Hover and focus effects */
    .custome-btn:hover,
    .custome-btn:focus {
        background: linear-gradient(135deg, #03719e, #667eea);
        transform: translateY(-3px); /* Slight lift effect */
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Enhanced shadow for depth */
    }

    /* Click effect (push-down animation) */
    .custome-btn:active {
        transform: translateY(1px); /* Slight push-down effect */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
.sheduleTbl {
    max-height: 300px;
    overflow-y: auto;
}
.form-check-input[type=checkbox] {
    border-radius: 0.25em;
    border-width: 2px !important;
    border-color: #9a9a9a!important;
}
.text-end {
    text-align: end;
}