:root {
    --eci-blue-dark: #173040;
    --eci-blue-light: #1d3e53;
}

.ocean-background {
    background: url("/img/bg-ocean.jpg") no-repeat center center fixed;
    background-size: cover;
}

.bg-eci-blue-dark {
    background-color: #173040;
    color: #ffffff;
}

.bg-eci-blue-light {
    background-color: #1d3e53;
    color: #ffffff;
}

.bg-eci-turquoise {
    background-color: #AAD6F0;
    color: #ffffff;
}

.bg-eci-gold {
    background-color: #E3CB94;
    color: #000000; /* dark text works better on light gold */
}

/* Login screen */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    width: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.glass-card h2 {
    text-align: center;
    margin-bottom: 20px;
}

.lgn-input {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 10px;
    margin-bottom: 15px;
    color: #fff;
    width: 100%;
    border-radius: 5px;
}

.lgn-button {
    width: 100%;
    background: var(--eci-blue-dark);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
}

.lgn-button:hover {
    background: var(--eci-blue-light);
}

/* Table styles */
tr.info.group-by > td:first-child {
  background-color: #edecec !important; /* Bootstrap's bg-danger color */
  padding: 1 !important;
}
