body {
    background-color: #0a5d69;
    color: #d5d8dc;
}

.hidden {
    display: none;
}

#dashboard{
    height:90vh;

}
.toggleButton {
    margin: 4px;
    background-color: #00aac3;
    padding: 4px;
    font-size:x-small
}

.kpis {
    margin: 10px;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

th {
    background-color: #00aac3;
    color: #e9f3f5;
}

th, td {
    border: 1px solid #00aac3;
    padding: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
}

tbody tr:nth-child(even) {
    background-color: rgba(10, 93, 105, 0.1);
}

tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

tbody tr:hover {
    background-color: rgba(0, 170, 195, 0.1);
}

.kta-primary {
    background-color: #00aac3;
    color: #fff;
}

.kta-secondary {
    background-color: #4299e1;
}

.additional-information {
    text-overflow: ellipsis;
    height: "40px";
    color: red;
    word-wrap: break-word;
}

.header-title {
    color: #4299e1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 25vw;
    max-height: 20px;
    float: left;
    margin: 10px;
}

.menu-container {
    background-color: #14323a;
    margin-bottom: 10px;
    border-bottom: 1px solid #00aac3;
    position: relative;
}

.menu {
    padding: 0.5rem 1rem;
    background-color: #14323a;
}

.nav-links {
    align-items: center;
}

.nav-item {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-item a {
    color: #d5d8dc;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-item a.active {
    border-bottom: 2px solid #00aac3;
    color: #00aac3;
}

.mobile-menu-button {
    padding: 0.5rem;
    color: #d5d8dc;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #14323a;
        padding: 0.5rem;
        flex-direction: column;
        align-items: start;
        border-top: 1px solid #00aac3;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .toggleButton {
        margin-left: 1rem;
    }
}

:root {
    --primary-color: #00aac3;
    --secondary-color: #4299e1;
    --background-color: #0a5d69;
    --text-color: #d5d8dc;
}

 h3 {
  color:#14323a
}
.kpi {
    max-height: 42vh;
    min-height: 36vh;
    width: 100%;
    margin: auto;
    padding: 5px;
    position: relative;
    border: 1px solid var(--primary-color);
    background-color: #ebfcff;
    margin-top: unset;
    margin-bottom: unset;
}

@media (max-width: 767px) {
    .kpi {
        max-width: 100%;
        min-height: 55vh;
    }
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.bg-green-100 {
    background-color: #d4edda;
}

.text-green-600 {
    color: #155724;
}

.bg-red-100 {
    background-color: #f8d7da;
}

.text-red-600 {
    color: #721c24;
}

.bg-yellow-100 {
    background-color: #fff3cd;
}

.text-yellow-600 {
    color: #856404;
}

.bg-blue-100 {
    background-color: #cce5ff;
}

.text-blue-600 {
    color: #004085;
}

.bg-gray-100 {
    background-color: #e2e3e5;
}

.text-gray-600 {
    color: #6c757d;
}

/* Toggle button styles */
.toggleButton {
    transition: all 0.3s ease;
    padding: 5px 10px;
    background-color: #00CEEA;
    color: white;
    font-weight: bold;
    border: none;
}

.toggleButton:hover {
    background-color: #0099B3;
}
