html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.is-invalid {
    border: 1px solid #dc3545;
}


    .is-invalid + .ss-main {
        border: 1px solid #dc3545;
    }

.is-invalid {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

    .is-invalid + .ss-main::after {
        color: #dc3545;
        font-size: 0.875em;
        margin-top: 0.25rem;
    }
/* Ensure all green buttons are the same size */
.btn-success {
    min-width: 150px; /* Adjust width as needed */
}

/* Ensure all buttons in action columns have the same size */
table.dataTable td .btn-group .btn {
    min-width: 30px; /* Adjust width to make all buttons equal */
    text-align: center;
}

/* Align buttons in the last column to the right */
table.dataTable td:last-child {
    text-align: right;
}

/* Ensure buttons inside the last cell are in a single row */
table.dataTable td .btn-group {
    display: flex;
    justify-content: flex-end;
}

/* Add spacing between the buttons */
table.dataTable td .btn-group .btn {
    margin-left: 2px; /* Adds a small space between buttons */
}

.header-banner {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 5%, rgba(74, 144, 226, 0.7) 50%, rgba(179, 229, 252, 0.8) 95%);
    height: 120px; /* Increase height */
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid #2c3e50;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10; /* Ensures it stays on top */
}

.header-logo {
    position: absolute;
    top: 5px; /* Moves logo slightly up */
    left: 50%;
    transform: translateX(-50%);
    width: 200px; /* Adjust logo size */
    z-index: 15; /* Higher z-index to stand above all */
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.2)); /* Adds soft shadow */
}

.header-banner h2 {
    position: absolute;
    left: 20px; /* Moves text to the left */
    bottom: 15px;
    color: #2c3e50;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    margin-left: 0; /* Remove unnecessary margin */
    z-index: 16;
}
.navbar-collapse {
    background: rgba(190, 200, 255, 0.90); /* Light azure */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin:0px; /* Adds left and right margins */
    border-radius: 8px; /* Optional: adds soft rounded corners */
}

