/* Pioneer Tank Monitor Dashboard Styles */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

    .page-header h1 {
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #495057;
    }

.nav-section {
    margin-top: 1rem;
}

.nav-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #8a92a9;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-item .nav-link::before {
    content: none !important;
}

.nav-item .nav-link i {
    width: 20px;
    text-align: center;
}

.page-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card.flex-fill {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .card.flex-fill .card-body {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

.data-table-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .data-table-container .table-responsive {
        flex-grow: 1;
        overflow-y: auto;
        max-height: none;
    }

.table-responsive.flex-fill {
    flex-grow: 1;
    overflow-y: auto;
}

.card-body.flex-fill {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.h-100 {
    height: 100% !important;
}

.pulse-animation {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
    }
}

.border-start.border-4 {
    border-left-width: 4px !important;
}
