
/*# sourceMappingURL=custom.min.css.map */
@import url('custom.min.css');
.auth-one-bg .bg-overlay {
    background:rgba(0,0,0,0.7);
}

/*.btn-primary {
    background-color: #050D9E !important;
    border-color: #050D9E;
}*/


.zoomCard:hover {
    transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/*.chargesummaryTable  td:first-child {
    font-weight:bold;
}*/


/* Add your styles for the spinner and overlay here */
#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 260px; /* Start after sidebar */
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9); /* White background instead of black */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    pointer-events: all; /* Block all clicks on the overlay area */
}

/* Mobile responsive - full width when sidebar is hidden */
@media (max-width: 991.98px) {
    #loading-overlay {
        left: 0;
    }
}

#loading-spinner {
    /* Add your spinner styles or use a library like Font Awesome for icons */
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loading-text {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    padding-left: 10px;
    font-weight: bold;
}
/*

.btn-primary {
    background-color: #3498db;
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
}

.btn-secondary {
    background-color: #aab7b8;
    border: none;
    color: white;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: #2980b9 !important;
}

.btn-secondary:hover {
    background-color: #95a5a6 !important;
}
*/
.uploaded-img {
    width: 100%;
    max-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-image {
    width: 200px; 
    height: auto;
    object-fit: cover; 
    border-radius: 4px;
}

.bounce {
    animation: bounce 0.5s ease-out;
    animation-iteration-count: 3;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}