
/* Spinner Container */
.spinner-container {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spinner Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Error Message */
.error-messages {
    color: red;
    font-size: 11px;
    margin-top: 5px;
}




.list-item-list {
    overflow: auto; /* Enable scrolling */
    padding: 10px; /* Add some padding */
    border: 1px solid #ddd; /* Add a subtle border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    background-color: #f9f9f9; /* Background color */
    scroll-behavior: smooth; /* Smooth scrolling */
}

    /* Custom scrollbar styling */
    .list-item-list::-webkit-scrollbar {
        width: 10px; /* Width of the vertical scrollbar */
        height: 10px; /* Height of the horizontal scrollbar */
    }

    .list-item-list::-webkit-scrollbar-thumb {
        background: linear-gradient(45deg, #6c63ff, #3f3d56); /* Gradient for the scrollbar thumb */
        border-radius: 10px; /* Rounded corners */
    }

        .list-item-list::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #5b54cc, #2d2b46); /* Hover effect */
        }

    .list-item-list::-webkit-scrollbar-track {
        background: #e0e0e0; /* Background of the scrollbar track */
        border-radius: 10px; /* Rounded corners */
    }

    /* Optional: Hover effect for the container */
    .list-item-list:hover {
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Slightly elevate on hover */
    }

    /* Optional: Content styling */
    .list-item-list p {
        margin: 5px 0;
        font-family: Arial, sans-serif;
        font-size: 14px;
        color: #333;
    }
/* Optional: Add spacing between buttons */
td .btn {
    margin: 5px; /* Space around each button */

    font-size: 12px; /* Adjust font size */
    padding: 5px 10px; /* Adjust padding for smaller size */
}

td {
    font-size: 12px;
}

th {
    font-size: 13px;
}



.error-message {
    color: #dc3545;
    margin-top: 0.25rem;
    font-family: revert;
    font-size: 12px;
    font-weight: 200;
}
