body {
    background: #f5f6f8;
}


/* LOGIN */

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: linear-gradient(
        135deg,
        #17191c,
        #34383d
    );
}

.login-card {
    width: min(430px, 100%);
    background: white;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
    text-align: center;
}

.brand-placeholder {
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: .08em;
    margin-bottom: 1.5rem;
}

.brand-placeholder small {
    font-size: .7rem;
    letter-spacing: .28em;
}

.login-card h1 {
    font-size: 1.6rem;
}


/* CARDS */

.card {
    border: 0;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
}


/* DASHBOARD */

.dashboard-stat-card {
    min-height: 130px;
    justify-content: center;
}

.dashboard-stat-label {
    color: #6c757d;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.dashboard-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: .5rem;
}

.recent-ticket {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid #eee;
}

.recent-ticket:first-of-type {
    padding-top: 0;
}

.recent-ticket:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}


/* CUSTOMERS */

.customer-row {
    cursor: pointer;
}

.customer-row:hover {
    background: #f8f9fa;
}


/* FIELD DISPLAY */

.field-label {
    color: #6c757d;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .2rem;
}

.notes-display {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}


/* SUMMARY PANELS */

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid #eee;
}

.summary-row:last-child {
    border-bottom: 0;
}

.summary-row strong {
    text-align: right;
}


/* WORK LOG */

.work-log {
    display: flex;
    flex-direction: column;
}

.work-log-entry {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.work-log-entry:first-child {
    padding-top: 0;
}

.work-log-entry:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.time-entry {
    border-left: 3px solid #198754;
    padding-left: 1rem;
}

.note-help-text {
    max-width: 480px;
}


/* TIMER */

.timer-running {
    padding: .25rem 0;
}

.timer-display {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.1;
    margin-bottom: .5rem;
    font-variant-numeric: tabular-nums;
}


/* CUSTOMER LINK */

.customer-name-link {
    font-weight: 600;
    text-decoration: none;
}

.customer-name-link:hover {
    text-decoration: underline;
}


/* MOBILE */

@media (max-width: 767.98px) {

    .navbar {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .summary-row {
        align-items: flex-start;
    }

    .summary-row strong {
        max-width: 55%;
    }

    .timer-display {
        font-size: 2.25rem;
    }

    .recent-ticket {
        flex-direction: column;
        gap: .25rem;
    }

}