/* Loader styles */
.app-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* White background with transparency */
    z-index: 1000; /* Ensure it's above other elements */
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content */
    font-size: 24px; /* Size of the loader icon */
    color: #000; /* Change color as needed */
}

.app-loader .fa {
    animation: spin 1s linear infinite; /* Spin animation for the loader */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/**
* material-scrolltop
*
* Author: Bartholomej
* Website: https://github.com/bartholomej/material-scrolltop
* Docs: https://github.com/bartholomej/material-scrolltop
* Repo: https://github.com/bartholomej/material-scrolltop
* Issues: https://github.com/bartholomej/material-scrolltop/issues
*/
.material-scrolltop {
    display: block;
    position: fixed;
    width: 0;
    height: 0;
    bottom: 23px;
    right: 23px;
    padding: 0;
    overflow: hidden;
    outline: none;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    cursor: hand;
    border-radius: 50%;
    background-color: #050F36;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    -ms-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
}

.material-scrolltop:hover {
    background-color: #050F36;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), 0 3px 15px rgba(0, 0, 0, 0.5);
}

.material-scrolltop::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: '';
    width: 0;
    border-radius: 100%;
    background-color: #050F36;
}

.material-scrolltop:active::before {
    width: 120%;
    padding-top: 120%;
    -webkit-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.material-scrolltop.reveal {
    width: 56px;
    height: 56px;
}

.material-scrolltop span {
    display: block;
    font-size: 25px;
    color: #fff;
}

.material-scrolltop, .material-scrolltop::before {
    background-image: url('../icons/top-arrow.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
}

.w-desktop-50 {
    width: 50% !important;
}

@media screen and (max-width: 768px) {
    .w-mobile-100 {
        width: 100% !important;
    }
    .w-mobile-90 {
        width: 90% !important;
    }
    .w-desktop-50 {
        width: 10% !important;
    }
}

.form-control-sm {
    border: 1px solid var(--bs-border-color) !important;
}

.form-control-sm:focus-visible {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.editable-input, .input-label[contenteditable="true"] {
    border: 1px solid #ccc !important;
    border-radius: 4px;
    padding: 8px 12px;
    min-height: 20px;
    line-height: 20px;
    outline: none;
    transition: all 0.2s ease;
    background: white;
    font-family: inherit;
    font-size: 16px;
    margin: 10px 0;
}

.editable-input, .input-label:empty:before {
    content: attr(data-placeholder);
    color: #999;
}

.editable-input, .input-label:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

/* Limit height expansion */
.editable-input, .input-label[single-line] {
    white-space: nowrap;
    overflow: hidden;
}

div[aria-hidden="true"] {
    display: none;
}

th a, td a {
    text-decoration: none;
    color: inherit;
}

.link-dark {
    text-decoration: none;
}
.link-dark:hover {
    text-decoration: underline;
}

.card-config {
    height: 200px;
    border:none;
    text-transform: uppercase;
}
.btn {
    font-size: 14px;
}
