﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

@font-face {
    font-family: 'bahij_thesansarabic-light';
    src: url('../fonts/bahij_thesansarabic-light.ttf') format('truetype');
}


.bannerheader {
    background-image: url("../Images/subpagebanners.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /*min-height: stretch;*/
    
}
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}
.bg-gray {
    background-color: rgba(0, 0, 0, .05);
}
.bg-header {
    background-color: #F6F6F6;
}

.bg-green-amana {
    background-color: #006946;
}

.bg-sidebar {
    color: black;
    background-color: #FFFFFF;
    border-color: #006946;
}

.btn-primary {
    color: #fff;
    background-color: #006946;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
    height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}







/* Change left border color on hover */
.hover-border:hover {
    border-left-color: #006946; /* Desired color for the left border on hover */
}
/*# sourceMappingURL=adminlte.css.map */


.table thead th {
    background-color: #006946; /* Custom background color */
    color: #FFFFFF; /* Custom text color */
}

.table-hover tbody tr:hover {
    background-color: #ECF8F3; /* Custom hover background color */
    color: #ffffff; /* Custom hover text color */
}


#loadingIndicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    border: 8px solid #f3f3f3; /* Light gray */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}


.readonly-highlight {
    background-color: #e5e5e5;
    border: 1px solid #007bff;
    color: black;
}



.table-responsive {
    overflow: visible !important;
}

.readonly-input:disabled {
    background-color: #e9ecef !important;
    color: #000 !important; /* optional: text color */
    cursor: not-allowed;
}

