
.swal2-toast {
    top: 80px !important;
    left: 50% !important; 
    transform: translateX(-50%) !important; 
    position: fixed !important;
    z-index: 1050 !important; 
    transition: none !important;
}

/*Remove backdrop  */
/*.swal2-container {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
}*/

.swal2-popup {
    max-width: 400px !important;
    font-size: 0.9rem !important;
}

.swal2-title {
    font-size: 1.2rem !important;
}

.swal2-content {
    font-size: 1rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-checkIn {
    color: black;
    background-color: #A2E073 !important;
    border-color: #A2E073 !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(162, 224, 115, 0.4);
}

.btn-checkIn:hover {
    color: black !important;
    background-color: #A2E073 !important;
    border-color: #A2E073 !important;
}

.btn-check:focus + .btn-checkIn, .btn-checkIn:focus, .btn-checkIn.focus {
    color: black !important;
    background-color: #A2E073;
    border-color: #A2E073;
}

.btn-checkOut {
    color: black;
    background-color: #F5A98F;
    border-color: #F5A98F;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(245, 169, 143, 0.4);
}

.btn-checkOut:hover {
    color: black !important;
    background-color: #F5A98F !important;
    border-color: #F5A98F !important;
}

.btn-checkOut:focus + .btn-checkOut, .btn-checkOut:focus, .btn-checkOut.focus {
    color: black !important;
    background-color: #F5A98F;
    border-color: #F5A98F;
}

/*Grid Load CSS */
.custom-loader {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ffc107; /* Warning color */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal-title {
    font-weight: bold !important;
    font-size: 1.30rem !important;
}

.form-label {
    font-weight: 500 !important;
    /*color: #616161 !important;*/
}

.form-control:disabled, .form-control[readonly] {
    background-color: white !important;
    opacity: 1;
}

.w-px-90 {
    width: 90px !important;
}

.w-px-60 {
    width: 60px !important;
}

.w-350 {
    width: 350px !important;
}

@media (max-width: 992px) {
    .w-350 {
        width: 320px !important;
    }
}

.blazored-toast-error {
    display: none;
}

.custom-toast {
    border-radius: 8px; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    font-family: 'Arial', sans-serif;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
    color: black !important;
}

@media (max-width: 576px) {
    .modal-footer .btn {
        width: 100% !important;
    }

    .modal-footer {
        flex-direction: column;
        gap: 10px !important;
    }
}

.modal-footer > * {
    margin: 0rem !important;
}

.modal-footer {
    padding: 0rem 2rem 1.5rem !important;
}

.btn-orange {
    color: white !important;
    border-color: #F2991F !important;
    background: #F2991F !important;
}

.btn-orange:active, .btn-orange:hover {
    color: white !important;
    background-color: #F99B18 !important;
    border-color: #F99B18 !important;
}

.btn-outline-orange {
    color: #F2991F !important;
    border-color: #F2991F !important;
    background: transparent !important;
}


.btn-outline-orange:active, .btn-outline-orange:hover {
    color: white !important;
    background-color: #F2991F !important;
    border-color: #F2991F !important;
}

.page-title {
    font-weight: bold !important;
    font-size: 1.30rem !important;
}

.table th {   
    /*color: #384551;*/
    color:#61697D !important;
    font-weight: 700;
}


/* Card hover effect */
.dashboard-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

/* Count Number Styling */
.count-number {
    font-weight: bolder;
    font-size: 2.5rem;
    transition: transform 0.3s ease-in-out;
}

.dashboard-card:hover .count-number {
    transform: scale(1.1);
}

/* Icon animation effect */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.3s ease-in-out;
}

.icon-effect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    transition: transform 0.6s ease-in-out, background 0.6s ease-in-out;
    padding: 5px;
}

.dashboard-card:hover .icon-effect {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(360deg);
}

/* Footer title styling */
.card-title {
    font-weight: bold;
    font-size: 0.9rem;
}


.visitor-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out !important;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.visitor-card:hover {
    /*transform: translateY(-5px) !important;*/ 
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2) !important;
}
