/* Sidebar */
.sidebar {
    width: 220px;
    min-height: 100vh;
    background-color: #1e2a38;
    color: #c9d1d9;
    flex-shrink: 0;
}

.sidebar-brand {
    color: #ffffff;
    font-size: 1.1rem;
}

.sidebar .nav-link {
    color: #c9d1d9;
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    transition: background-color 0.15s, color 0.15s;
}

.sidebar .nav-link:hover {
    background-color: #2d3f52;
    color: #ffffff;
}

.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: #ffffff;
}

.sidebar .nav-link.text-danger {
    color: #f85149 !important;
}

.sidebar .nav-link.text-danger:hover {
    background-color: #3d1f1f;
    color: #ff6b6b !important;
}

/* Main content area */
main {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Transaction table */
.txn-table {
    font-size: 0.85rem;
}

.txn-table .data-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Status colors */
.status-success {
    color: greenyellow;
}

.status-error {
    color: red;
}

.status-default {
    color: slategray;
}

/* Filter form */
.filter-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Results area */
#results {
    margin-top: 1rem;
}

/* Loading indicator */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: inline-block;
}
