﻿.validation-message{
    color: red;
}

.label.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.card-filter {
    background-color: #282828;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
}

.page-pretitle {
    color: #F3C96A;
}

.card-info {
    background-color: #282828;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-borderless {
    background-color: #282828;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
}

.card-font-title-filter {
    color: #FFFFFF;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
}

.card-font-subtitle-filter {
    color: #F3C96A;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    cursor: pointer;
}

.card-font-title-info {
    color: white;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 900;
}

.card-font-title-info-surplus {
    color: black;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.card-font-title-chart, .section-title {
    color: white;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.emp-section {
    color: #F3C96A;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1px;
}

.card-font-subtitle-info {
    color: #FFFFFF;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 30px;
    font-weight: 500;
}

.card-font-subtitle-info-name {
    color: #FFFFFF;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.card-font-subtitle-info-surplus {
    color: black;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 30px;
    font-weight: bold;
}

.btn-custom {
    color: #F3C96A;
    background-color: transparent;
    border: 1px solid #F3C96A;
}

    .btn-custom:hover {
        color: #000000;
        background-color: #F3C96A;
        border-color: transparent;
    }

    .btn-custom:active {
        color: #F3C96A;
        background-color: #F3C96A;
    }

    .btn-custom:disabled {
        color: #F3C96A;
        border-color: #F3C96A;
    }

    .btn-custom:active {
        color: #F3C96A;
        background-color: rgba(0, 0, 0, 0.04);
        border-color: #F3C96A;
    }

.button-submit {
    background-color: #FFCC00;
    color: #000000;
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
}

    .button-submit:hover {
        background-color: #FFCC00;
        color: #000000;
    }

    .button-submit:active, .button-submit:focus {
        color: #FFFFFF;
        background-color: rgb(40, 40, 40);
        border-color: #FFCC00;
    }

.card-stamp-icon {
    background-color: #FFCC00;
}

.btn-group > .btn {
    border-top-right-radius: 25px !important;
    border-bottom-right-radius: 25px !important;
    border-top-left-radius: 25px !important;
    border-bottom-left-radius: 25px !important;
}

.btn-group {
    background-color: rgba(243, 201, 106, 0.5);
    border-radius: 25px;
    padding: 5px;
    backdrop-filter: blur(10px); /* Background blur for glass effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    max-width: 100%;
}

    .btn-group .btn {
        color: #fff;
        background-color: transparent;
        border: none;
        border-radius: 30px;
        padding: 6px 15px;
        font-size: 14px;
    }

        .btn-group .btn.active {
            background-color: #fff;
            color: #000;
            border-radius: 25px;
        }

        .btn-group .btn:hover {
            background-color: rgba(243, 201, 106, 0.8);
            border-radius: 25px;
        }

.btn-download {
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    color: black;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-left: 20px;
}

    .btn-download i {
        font-size: 16px;
    }

    .btn-download:hover {
        background: #f0f0f0;
    }

    .btn-download.downloading {
        background: white !important; /* Keep background */
        color: black !important; /* Ensure text stays visible */
        border-color: #ccc !important; /* Keep border */
        opacity: 1 !important; /* Ensure no transparency */
        cursor: not-allowed; /* Show disabled cursor */
        pointer-events: none; /* Prevent clicking */
    }

    .btn-download:disabled {
        background-color: darkgrey !important;
        cursor: not-allowed;
        opacity: 0.8;
    }

.menu-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-grow: 1; /* Allows button group to take available space but not push button down */
}

.menu-group.single-button {
    flex-grow: 0; 
}

.btn-container {
    white-space: nowrap; /* Prevents wrapping */
}

/* iPad size and smaller: Move button to next row */
@media (max-width: 991px) {
    .d-flex {
        flex-wrap: wrap !important;
    }

    .btn-container {
        width: 100%;
        justify-content: center;
        display: flex;
        margin-top: 10px;
    }
}

/* Survey */
.survey-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    padding: 10px;
    background-color: #1E1E1E;
    height: auto;
    overflow-y: visible;
    border-radius: 5px;
}

.survey-card {
    background-color: #000000;
    border-radius: 8px;
    overflow: visible;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 165px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

    .survey-card.active {
        z-index: 10;
    }

.survey-card-header {
    color: #FFFFFF;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
    overflow: hidden;
}

.survey-card-header-title {
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1 1 auto; 
    margin-right: 8px; 
}

.survey-card-header-menu {
    flex: 0 0 auto; 
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

    .survey-card-header-menu svg {
        width: 18px; /* Smaller icon */
        height: 18px;
    }

    .survey-card-header-menu:hover {
        opacity: 1;
    }

.survey-card-body {
    padding: 10px 12px;
    background-color: #000000;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
}

.survey-card-title {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    padding-bottom: 0; 
    max-height: calc(1.3em * 2); 
}


.survey-card-responses {
    color: #9B9B9B;
    font-size: 11px;
    text-align: left; /* Changed to left alignment */
    position: absolute;
    bottom: 10px;
    left: 12px; /* Changed to left positioning */
    width: calc(100% - 24px); /* Full width minus padding */
}

/* Button styling */
.btn-primary {
    background-color: #1C6C54;
    border-color: #1C6C54;
}

.btn-download {
    background-color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
}

/* Hover effect */
.survey-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .survey-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .survey-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 480px) {
    .survey-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .survey-card-title {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 360px) {
    .survey-cards-container {
        grid-template-columns: 1fr;
    }
}

.dropdown-menu-custom {
    position: absolute;
    top: 35px; /* Adjust if needed */
    right: 12px;
    background: #fff;
    color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 1000;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

    .dropdown-item:hover {
        background: #f2f2f2;
    }

    .dropdown-item.delete {
        color: red;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ERM CSS */
.risk-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-weight: bold;
}

    .risk-table th, .risk-table td {
        padding: 10px;
        border: 1px solid #000;
    }

.impact-header {
    background-color: #007bff;
    color: white;
}

.gross-risk-header {
    background-color: #d9d9d9;
    font-weight: bold;
    color: black;
}

.likelihood-header {
    background-color: #007bff;
    color: white;
    writing-mode: vertical-rl;
    text-align: center;
    transform: rotate(180deg);
}

.likelihood-cell {
    background-color: #aae4ff;
    color: black;
}

.likelihood-cell-rare {
    background-color: #97c8df;
    color: black;
}

.green-cell {
    background-color: #4CAF50;
    color: black;
}

.yellow-cell {
    background-color: #FFC107;
    color: black;
}

.orange-cell {
    background-color: #FFA500;
    color: black;
}

.red-cell {
    background-color: #DC3545;
    color: black;
}

/*Enlarge & Modal */
.zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background-color: rgba(200, 200, 200, 0.5); /* Light grey transparent */
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10; /* Ensures it's on top */
}

    .zoom-btn:hover {
        background-color: rgba(150, 150, 150, 0.8);
    }

.apexcharts-text {
    fill: white !important;
}

.apexcharts-legend-text {
    color: white !important;
}

.modal-body {
    background: #282828 !important;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.modal-content .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-header {
    background: #202020;
}

h5.modal-title {
    color: white;
}

.modal-footer {
    background: #202020;
}


/*User Management Menu*/
/* Sidebar Menu Card */
.sidebar-card {
    background-color: #2a2a2a;
    border-radius: 5px;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.sidebar-title {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .menu li {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        cursor: pointer;
        transition: 0.3s;
        border-radius: 10px;
        gap: 10px;
    }

    .menu ul {
        font-size: 12px;
    }

    .menu li:hover,
    .menu li.active {
        background-color: #2a605c;
    }

/* Profile Card */
.details-card {
    background-color: #292929;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 0;
    position: relative;
}

.profile-header {
    position: relative;
    width: 100%;
}

.details-card .card-body {
    padding: 0; /* Remove default padding */
    height:auto;
}

.profile-details {
    margin-top: 50px;
    padding: 0 20px; /* Add padding to the details section */
}

/* Cover Image */
.cover-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.cover-img-password {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* Profile Picture */
.profile-picture {
    position: absolute;
    bottom: -40px;
    left: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFFFFF;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.profile-picture-accessibility {
    position: absolute;
    bottom: -100px;
    left: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFFFFF;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    margin-bottom:10px;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Upload Overlay */
.upload-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Camera Icon */
    .upload-overlay i {
        font-size: 14px;
        color: white;
    }

.camera-icon {
    cursor: pointer;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Profile Details */
.profile-details {
    margin-top: 50px;
}

.profile-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #444;
    padding: 10px 0;
}

.label {
    font-weight: bold;
    color: #bbb;
    margin-top: 10px;
}

.value {
    color: #fff;
    font-weight: bold;
}

/* Edit Button */
.edit-btn {
    text-align: left;
    margin-top: 20px;
    padding: 0 20px 20px;
}

.btn-warning {
    width: 120px;
    font-weight: bold;
}

/* Profile Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.profile-dropdown {
    position: absolute;
    right: 0;
    top: 55px;
    width: 240px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

    .profile-dropdown.show {
        display: block;
    }

.profile-header-info {
    display: flex;
    align-items: center;
    padding: 15px;
}

.dropdown-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.profile-text {
    color: white;
}

.profile-name {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color:black;
}

.profile-position {
    font-size: 12px;
    margin: 0;
    color: black;
}

.dropdown-divider {
    margin: 0;
    border-top: 1px solid #444;
}

.profile-menu-items {
    padding: 8px 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: black;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .profile-menu-item:hover {
        background-color: #d4dedd;
    }

    .profile-menu-item i {
        margin-right: 12px;
        font-size: 16px;
    }

/* Mobile specific styles */
.mobile-dropdown {
    position: absolute;
    right: 10px;
    top: 45px;
}


/* Change Password */

.password-container {
    display: flex;
    align-items: center;
    width: 50%;
    background: white;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 4px 10px;
}

.changePass-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.changePass-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

    .changePass-item .label {
        text-align: center;
        font-weight: bold;
        width: 100%;
        margin-bottom: 10px;
    }

.form-control-changePass {
    flex: 1;
    padding: 10px;
    border: none;
    color: black;
    text-align: left;
    background: transparent;
    outline: none;
}

.save-btn {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.btn-yellow {
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 50%;
    text-align: center;
}

    .btn-yellow:hover {
        background-color: #e6b800;
    }

.toggle-password {
    background: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    border-radius: 50%;
    margin-left: 8px;
}

    .toggle-password:hover {
        color: black;
    }

/* Spinner */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    z-index: 9999;
}

.loading-overlay-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


.spinner-border.text-light {
    width: 3rem;
    height: 3rem;
}

.text-light {
    color: white !important;
}

/*Attendance Table*/
.calendar-container {
    margin-top: 2rem;
    background: #282828;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.calendar-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-day-header {
    font-weight: bold;
    text-align: center;
    background-color: #f0f0f0;
    padding: 0.5rem;
    border-radius: 4px;
    color: black !important;
    font-weight: bold;
}

.calendar-cell {
    min-height: 80px;
    padding: 0.4rem;
    text-align: center;
    border-radius: 6px;
    color: white;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-weight: 500;
}

    .calendar-cell .day-number {
        font-weight: bold;
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    /* Day backgrounds */
    .calendar-cell.late {
        background-color: #ff3b30;
    }

    .calendar-cell.outofoffice {
        background-color: #06b0fe;
    }

    .calendar-cell.ontime {
        background-color: #34c759;
    }

    .calendar-cell.onleave,
    .calendar-cell.mc {
        background-color: #ff9500;
    }

    .calendar-cell.halfday {
        background-color: #EF9651;
    }

    .calendar-cell.other {
        background-color: #FFB433;
    }

.status-text {
    font-size: 0.75rem;
    color: white;
}

/* Empty cell to align start of month */
.calendar-cell.empty {
    background: transparent;
}

/* Accordian */
.accordion-item {
    background-color: #5d5d5d;
    color: white;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1); 
}

.accordion-button {
    color: white;
    background-color: #333; 
}

.accordion-button:not(.collapsed) {
    background-color: #333;
    color: white;
    box-shadow: none;
}

.accordion .accordion-body {
    background-color: #333 !important;
    color: white;
}

.accordion .accordion-collapse {
    background-color: #333 !important;
}

/* Circle Progress Bar */
.progress {
  width: 80px;
  height: 80px !important;
  float: left;
  line-height: 100px;
  background: none;
  margin: 10px;
  box-shadow: none;
  position: relative;
}
.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 12px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress .progress-left {
  left: 0;
}
.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 12px;
  border-style: solid;
  position: absolute;
  top: 0;
}
.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  transform-origin: center left;
}
.progress .progress-right {
  right: 0;
}
.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  transform-origin: center right;
}
.progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #000;
  font-size: 14px;
  color: #fff;
  line-height: 75px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}
    .progress.blue .progress-bar {
        border-color: #fdba04;
    }
.progress.yellow .progress-bar {
  border-color: #fdba04;
}

/* Semi Progress*/
.progress-data {
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100%; 
}

.progress-dial {
    width: 100%; 
    height: auto; 
    max-width: 300px; 
    max-height: 155px;
}

    .progress-dial .progressbar-text {
        color: #333;
        font-family: 'Figtree', sans-serif;
        font-size: 2vw; 
        font-weight: 700;
        line-height: normal;
        text-align: center;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 6px 0;
    }

        .progress-dial .progressbar-text .completed-text {
            display: block;
            text-align: center;
            font-size: 1rem; /* Adjust the size of the completed text */
            font-weight: 400;
        }

@media (max-width: 768px) {
    .progress-dial {
        max-width: 200px; 
        max-height: 120px;
    }

        .progress-dial .progressbar-text {
            font-size: 3vw; 
        }
}

/* Traffic Light */
.traffic-light-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.traffic-light {
    width: 100px;
    background-color: #333;
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.light {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.red {
    background-color: red;
}

.yellow {
    background-color: yellow;
    color: black;
}

.green {
    background-color: limegreen;
}

.labels {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.label {
    font-size: 18px;
    font-weight: bold;
}

.red-text {
    color: #e74c3c;
}

.yellow-text {
    color: #f1c40f;
}

.green-text {
    color: #2ecc71;
}

/* New styles for Total Project */
.total-project {
    text-align: center;
    margin-top: 20px;
}

.total-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.total-number {
    font-size: 32px;
    font-weight: bold;
    margin-top: 5px;
}

/* Scroll bar */
.scroll-white::-webkit-scrollbar {
    width: 8px;
}

.scroll-white::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-white::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 4px;
}

/* Optional: for Firefox */
.scroll-white {
    scrollbar-width: thin;
    scrollbar-color: white transparent;
}

/* Audit Trail */
.hover-underline {
    color: #53bdeb !important;
}

    .hover-underline:hover {
        text-decoration: underline;
        border-color: white;
        cursor: pointer;
        color: #53bdeb;
    }