/*nav .navbar-nav li a{
  color: white 
  }*/

 body { padding-top: 70px; }
 
/*.form-control.table-condensed table, th, td , input[type=text], input[type=number], select{
  font-size: 12px;
}*/

.redbg { background-color:#B82223!important;  }
.amberbg {background-color:#F1AF25!important; }
.lightgreenbg {background-color:#CAEFD1!important; }
.greenish { background-color:#CAEFD1!important;  }
.bluish {background-color:#CAF4F4!important; }
.cremmish {background-color:#FFF2CC!important; }
.pinkish {background-color:#FDE0D9!important; }

.redbg td,
.amberbg td,
.lightgreenbg td,
.greenish td,
.bluish td,
.cremmish td,
.pinkish td{
    background-color: inherit; /* Inherit the background color from <tr> */
}
.redbg input,
.amberbg input,
.lightgreenbg input,
.greenish input,
.bluish input,
.cremmish input,
.pinkish input{
    background-color: transparent; /* Make input background transparent */
    border: none; /* Optional: remove the default border */
}
.redbg a {
    color: #FFD7D7 !important; /* Change hyperlink color to white for better visibility */
}

.redbg a:hover {
    color: #FFB3B3; /* Ensure hover color remains white */
}

/* Remove underline from links by default */
.table a {
    text-decoration: none; /* No underline */
}

/* Add underline on hover */
.table a:hover {
    text-decoration: underline; /* Underline on hover */
}

.form-control[readonly] {
    background-color: #e9ecef; /* Grey background */
    opacity: 1; /* Make sure the opacity is not reduced */
    cursor: not-allowed; /* Optional: make the cursor reflect that it's not editable */
}
.form-select[readonly], .form-select:disabled {
    background-color: #e9ecef; /* Grey background */
    opacity: 1; /* Ensure full opacity */
    cursor: not-allowed; /* Display not-allowed cursor */
}
.footer {
        position: fixed;
        padding: 10px 10px 0px 10px;
        bottom: 0;
        width: 100%;
        /* Height of the footer*/
        height: 40px;
        background: black;
        color: white;
    }

/* Login page styling */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2247 0%, #1f4d82 45%, #2b6fad 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    color: #f3f6fb;
}

.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 35%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.12), transparent 25%),
                rgba(15,34,71,0.95);
    z-index: 1;
}

.login-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    padding: 32px 30px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
    backdrop-filter: blur(14px);
}

.login-brand {
    text-align: center;
    margin-bottom: 28px;
}

.login-logo {
    width: 90px;
    max-width: 100%;
    margin-bottom: 14px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.15);
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    padding: 10px;
}

.login-brand h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.login-brand p {
    margin: 8px auto 0;
    font-size: 14px;
    color: #d8e4f4;
}

.login-form .form-group {
    margin-bottom: 18px;
}

.login-form label {
    color: #dde6f2;
    font-weight: 600;
}

.login-form .form-control {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    height: 48px;
    padding: 10px 14px;
}

.login-form .form-control:focus {
    border-color: #74b9ff;
    box-shadow: 0 0 0 4px rgba(116,185,255,0.12);
    background: rgba(255,255,255,0.16);
    color: #ffffff;
}

.login-submit {
    width: 100%;
    padding: 12px 18px;
    border-radius: 14px;
    background: #1f75e3;
    border: 1px solid #1f75e3;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
}

.login-submit:hover,
.login-submit:focus {
    background: #6a9ff6;
    border-color: #6a9ff6;
    color: #ffffff;
}

.login-footer {
    text-align: center;
    margin-top: 18px;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}

@media (max-width: 480px) {
    .login-box {
        padding: 26px 20px;
    }
    .login-brand h1 {
        font-size: 24px;
    }
}
        