.hero-section:after {
    background-color: #1F3463 !important;
}

/***** PAGES PROFILE *****/

/* modify the color of profile tab in top navigation */
#profile-dropdown {
    background-color: #f3f2f3;
}

/* modify the color of left navigation panel */
.leftside-menu {
    background-color: #1f3463;
}

/* puts a background color to side nav items whenever hovered */
#hover:hover {
    background-color: #fdfdfd;
    color: #1f3463;
}

tr.hoverable-row:hover {
        background-color: #2ca4dd !important;
        color: white !important;
    }
.hoverable-row:hover td {
    background-color: #2ca4dd !important; /* Your hover bg */
    color: white !important;              /* Text + icon color */
}

.hoverable-row:hover i.toggle-icon {
    color: white !important; /* Ensures icon also turns white */
}

thead.bg-primary th {
        border-color: #1f3463 !important; /* or any custom color */
        border: 10px;
    }

/* changes the color of the active navigation  */
.side-nav-item > .active {
    background-color: #2ca4dd;
    color: #fff;
}

.side-nav-second-level {
    margin-left: 20px!important;
    padding-left: 10px!important;
}

.side-nav-link {
    margin-left: 0!important;
    padding-left: 0!important;
}

/* modify the background color of user profile box in the main content */
.profile-user-box {
    background-color: #1f3463;
}

/* set the LVCC logo size */
#logo {
    width: 100px;
    height: 100px;
    margin: 30px;
    background-color: #fff; /* !important, sets the white background of logo */
    border-radius: 100%;
}

/* set the background color of logo when the side nav is collapsed */
#logo-bg {
    background-color: #1f3463;
}

/* !important, sets the white background of logo */
#logo-sm {
    background-color: #fff;
    border-radius: 100%;
}

/***** PAGES 404 *****/
/* removes the background color of card, holds the student name, course, avatar and edit profile button */
.bg-remove {
    background-color: rgba(0, 0, 0, 0.2);
}

/* sets the actual background color */
.bg-primary, .btn-primary {
    background-color: #1f3463 !important;
    border: none;
}

.bg-info, .btn-info {
    background-color: #2CA4DD !important;
}

/* sets the actual text color */
.text-primary {
    color: #1f3463 !important;
}

/***** ENROLLMENT STATUS *****/
.bg-secondary {
    background-color: #a9ddf6 !important;
}

.table-color {
    background-color: #2CA4DD !important;
}

/***** APPLICANT SCREENING *****/
/* changes the color of the active navigation in the card */
.nav-pills > .nav-item > .active {
    background-color: #1f3463;
}

/* changes the font color of navigation in the card */
.nav-pills > .nav-item button {
    color: #231f20;
}

#advanced-filter {
    display: none;
}

/* Application Status page steps  */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 800px;
    margin: 50px auto;
}
.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: #ccc;
    color: #000;
}
.step-line {
    flex: 1;
    height: 0;
    margin: 0 5px;
    border-top: 3px dotted #ccc;
}
.step-text {
    text-align: center;
    margin-top: 10px;
}
.step-done {
    background-color: #10882c;
    color: #fff;
}
.step-current {
    background-color: #1f3463;
    color: #fff;
}

th#sort a {
    color: inherit; /* Use the color inherited from the parent element */
    text-decoration: none; /* Remove any underlines */
}

/* Style the password validation messages */
#password-strength {
    background: #ffffff;
    color: #727272;
    position: relative;
    padding-left: 10px;
}

#password-strength p {
    font-size: 13px;
}

/* Add a green text color and a checkmark when the requirements are met */
.valid {
    color: rgb(52, 160, 52);
}

.valid:before {
    position: relative;
    left: -20px;
    content: "✔";
}

/* Add a red text color and an "x" when the requirements are not met */
.invalid {
    color: rgb(195, 195, 195);
}

.invalid:before {
    position: relative;
    left: -20px;
}

.custom-modal-header {
    background-color: #1f3463 !important; /* Change to your desired color */
    color: #fff; /* Optional: Change text color to white for better contrast */
}

/* REPORT FOR FINANCE CUSTOM UI */
@media screen {
    .print-only {
        display: none; /* Hides elements in screen view */
    }
}

@media print {
    .print-only {
        display: block; /* Shows elements in print view */
    }

    body {
        margin: 0; /* Remove default margins */
        padding: 5px; /* Reduce padding around the body */
        font-family: "Courier New", Courier, monospace; /* Accounting font */
        color: black; /* Set text color */
        background: white; /* Set background color */
        font-size: 10pt; /* Adjust base font size for printing */
    }

    /* Hide buttons and navigation */
    .btn,
    .navbar,
    .footer {
        display: none; /* Prevent printing of buttons and nav */
    }



    /* Header styles with Garamond font */
    h4 {
        font-family: "Tolkien", sans-serif; /* Use Garamond or your custom Tolkien font */
        margin: 5px 0; /* Reduced margins for headers */
    }
    p {
        color: #ff0000 !important;
        padding: 10px;
    }

    /* Style the table for printing */
    #transactionTable {
        width: 100%; /* Full width */
        border-collapse: collapse; /* Merge borders */
        page-break-inside: auto; /* Allow page breaks inside the table */
    }

    /* Table header styles */
    #transactionTable th {
        color: #000 !important;
        background-color: #1f3463; /* Maintain the header color */
        color: #fff; /* Text color for headers */
        padding: 5px; /* Reduced padding for table headers */
        font-size: 9pt; /* Smaller font size for headers */
        font-family: "Cinzel", serif; /* Use Cinzel font for table headers */
    }

    /* Table cell styles */
    #transactionTable1 td {
        padding: 2px; /* Reduced padding for cells */
        text-align: right; /* Align numeric values to the right */
        font-size: 10pt; /* Smaller font size for table cells */
    }
    #transactionTable td {
        padding: 2px; /* Reduced padding for cells */
        text-align: left; /* Align numeric values to the right */
        font-size: 10pt; /* Smaller font size for table cells */
    }

    /* Alternate row colors for readability */
    #transactionTable tbody tr:nth-child(even) {
        background-color: #f9f9f9; /* Light gray for even rows */
    }

    #header {
        width: 100%; /* Fills the maximum width of the parent container */
        max-width: 100%; /* Prevents the image from exceeding its intrinsic width */
        max-height: 100%; /* Ensures the height stays within bounds */
        height: auto; /* Maintains the aspect ratio */
        display: block; /* Ensures no inline spacing issues */
        margin: 0; /* Centers the image horizontally if the parent is larger */
        object-fit: contain; /* Scales the image to fit within width and height */
    }

    /* Custom style for route display at the bottom of the print page */
    .print-route {
        position: fixed;
        bottom: 10px;
        left: 0;
        width: 100%;
        text-align: center;
        font-size: 9pt;
        color: #1f3463;
        font-family: "Courier New", Courier, monospace;
        background: none;
        z-index: 9999;
        padding: 2px 0;
    }

    /* Page settings */
    @page:first {
        margin: 0 0 60px 0; /* Set margins for the first page */
    }

    @page {
        margin: 60px 0 60px 0; /* Set margins for proceeding pages */
    }

}
/* table left-side of all number */
.align-right {
    text-align: right;
}
/* capital letter in account name in report */
.uppercase {
    text-transform: uppercase;
}
.custom-card {

    border-radius: 8px; /* Rounded corners for cards */
    padding: 10px; /* Padding inside the card */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */

}
.custom-card h5, h3, {
    padding-left: 15px !important; /* Padding inside the card */
}
.custom-card i {
     color: #1f3463 !important; /* Primary color for text */
}
.custom-card .custom-info {
     color: #17a2b8 !important; /* Primary color for text */
}
.custom-card .custom-danger {
     color: #dc3545 !important; /* Danger color for text */
}
.custom-card .custom-success {
    color: #28a745 !important; /* Success color for text */
}
.custom-card .custom-warning {
    color: #ffc107 !important; /* Warning color for text */
}

/* Hyper Bootstrap hover effect for card-header */
.hover-highlight:hover {
    background-color: #1f3463 !important; /* A light blue for hover effect */
    cursor: pointer;
    transition: background-color 0.1s ease-in-out; /* Smooth transition */
}

/* Optional: Change text color on hover */
.hover-highlight:hover h5 {
    color: #000000 !important; /* Primary color for text */
    transition: background-color 0.1s ease-in-out; /* Smooth transition */
    background-color: #ffffff !important; /* A light blue for hover effect */
}

.hover-highlight:hover h3 {
    color: #ffffff !important; /* Primary color for text */
}
.hover-highlight:hover i {
    color: #000000 !important; /* Primary color for text */
}
.card.widget-flat:hover {
    cursor: pointer;
}

/* Style for disabled remove button */
.remove-row[disabled] {
    background-color: #e0e0e0; /* Lighter gray */
    border-color: #dcdcdc; /* Lighter border */
    color: #9e9e9e; /* Text color when disabled */
    cursor: not-allowed; /* Show a "not allowed" cursor */
}









