﻿/* Divider with text */
.navbar-divider {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Space between text and lines */
}

    .navbar-divider span {
        font-size: 0.875rem;
        color: whitesmoke; /* Secondary text color */
        font-weight: 500;
        white-space: nowrap; /* Prevent text from wrapping */
    }

.divider-line {
    flex-grow: 1; /* Make the line expand */
    height: 1px;
    background-color: whitesmoke; /* Light gray for the line */
}

.mud-icon-button:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Subtle hover effect */
}

.mud-grid, .mud-paper, .mud-item {
    width: 100% !important;
    /* max-width: none !important; */
}

.full-width-select {
    width: 100%;
}

.full-width-chip {
    display: block;
    width: 100px;
    text-align: center;
}

.flat-no-shadow {
    box-shadow: none !important;
    border: none !important;
}



.login-input .mud-input-control-helper-container {
    max-width: 220px !important;
}

@media print {
    .report-page {
        width: 210mm; /* A4 width */
        /* use 148mm for A5 */
        height: 297mm;
        page-break-after: always;
    }
}

.report-header {
    background-color: #f3f3f3; /* light gray */
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 16px;
}

.report-header-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
}

.report-header-subtext {
    font-size: 0.85rem;
    color: #777;
}

.incident-slip {
    position: static !important;
    z-index: auto !important;
}
.mud-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mud-field-label {
    order: -1;
    font-weight: bold;
}

.mud-field-content {
    order: 0;
}

.mud-badge-small .mud-badge-content {
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
}
