html, body {
    background-color: #eef2f7;
}

.log-console {
    height: calc(100vh - 92px);
}

.log-console-toolbar {
    min-height: 40px;
}

.log-console-output {
    flex: 1;
    min-height: 0;
    overflow: auto;
    background: #101418;
    color: #e7edf3;
    font-family: Consolas, "Roboto Mono", monospace;
    font-size: 12px;
    line-height: 1.45;
}

.log-line {
    display: grid;
    grid-template-columns: 92px 86px minmax(130px, 0.7fr) minmax(180px, 1.3fr);
    gap: 8px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.log-time,
.log-level,
.log-category,
.log-message {
    overflow-wrap: anywhere;
}

.log-level {
    font-weight: 700;
}

.log-exception {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    white-space: pre-wrap;
    color: #ffc9c9;
}

.log-warning .log-level {
    color: #ffd166;
}

.log-error .log-level,
.log-critical .log-level {
    color: #ff8f8f;
}

.log-debug .log-level,
.log-trace .log-level {
    color: #9eb3c7;
}

@media (max-width: 720px) {
    .log-line {
        grid-template-columns: 86px 76px minmax(0, 1fr);
    }

    .log-category,
    .log-message,
    .log-exception {
        grid-column: 1 / -1;
    }
}

.notification-button {
    height: 45px;
    font-weight: 700;
    text-transform: none;
    box-shadow: none;
}

.home-tabs .mud-tabs-panels {
    padding-top: 12px;
}

.home-list-card {
    min-height: 112px;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: center;
    gap: 20px;
}

.home-list-info {
    min-width: 0;
}

.trip-state-action {
    width: 190px;
    height: 52px;
    justify-self: end;
    overflow: hidden;
    border-radius: 8px;
}

.trip-state-primary {
    width: 142px;
    height: 52px;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.trip-state-menu {
    width: 48px;
    height: 52px;
    border-left: 1px solid rgba(255, 255, 255, 0.34);
}

    .trip-state-menu .mud-button-root {
        width: 100%;
        min-width: 48px;
        height: 52px;
        padding: 0;
        border-radius: 0;
    }

@media (max-width: 560px) {
    .home-list-card {
        grid-template-columns: minmax(0, 1fr) 142px;
        min-height: 100px;
        gap: 12px;
        padding: 14px 12px !important;
    }

    .trip-state-action {
        width: 142px;
        height: 46px;
    }

    .trip-state-primary {
        width: 102px;
        height: 46px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .trip-state-menu {
        width: 40px;
        height: 46px;
    }

        .trip-state-menu .mud-button-root {
            min-width: 40px;
            height: 46px;
        }
}
