﻿#language-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader-content {
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Additional styling as needed */
#loading {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
}

#loadingcontent {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#loadingspinner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    font-size: larger;
    padding-top: 80px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#loadingspinner::before {
    border-top-color: #4CAF50; /* Green */
}

#loadingspinner {
    color: #4CAF50; /* Green */
}

#loadingcontent span {
    animation: fadeIn 1s ease-in-out infinite;
}

#loadingspinner::before {
    content: "FLX";
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid #ccc;
    border-top-color: #555;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* Right-aligned for large screens */
@media (min-width: 992px) {
    .authentication-bg {
        margin-right: 20px; /* Push form to the right */
    }
}

/* Centered for smaller screens */
@media (max-width: 991px) {
    .authentication-bg {
        margin: auto; /* Center the form horizontally and vertically */
    }
}


/*.table-responsive {
    max-height: 800px;*/ /* Limit height for large data */
    /*overflow-y: auto;*/ /* Add vertical scrolling */
    /*border: 1px solid #ddd;*/ /* Optional border for the container */
/*}

    .table-responsive table {
        table-layout: auto;*/ /* Dynamic column width based on content */
        /*width: 100%;*/ /* Ensure table spans the container width */
        /*border-collapse: collapse;*/ /* Consistent border appearance */
    /*}

    .table-responsive th,
    .table-responsive td {
        word-wrap: break-word;*/ /* Allow text to wrap */
        /*word-break: break-word;*/ /* Handle long words gracefully */
        /*white-space: normal;*/ /* Allow text to break into new lines */
        /*text-overflow: ellipsis;*/ /* Optionally add ellipsis for truncated text */
        /*overflow: hidden;*/ /* Prevent content from overflowing */
        /*border: 1px solid #ddd;*/ /* Cell border */
        /*padding: 8px;*/ /* Add padding for better readability */
        /*vertical-align: top;*/ /* Align text at the top of the cell */
    /*}*/

th {
    background-color: #f4f4f4; /* Optional header background */
    font-weight: bold; /* Bold header text */
}


td, th {
    vertical-align: middle; /* Align text vertically in the middle */
}

@media (max-width: 768px) {
    td, th {
        font-size: 12px;
        Reduce font size for smaller devices
    }
}
