body {
    background-color: #f8f9fa;
}

.header-bar {
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    margin-bottom: 1.5rem;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-center {
    flex-grow: 1;
    text-align: center;
}

.main-title {
    font-size: 1.8rem;
    color: white;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.header-bottom-row {
    display: flex;
    justify-content: flex-end;
}

.actions .action-btn {
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    color: #fff;
    background-color: #0d6efd;
    border: 1px solid #0d6efd;
    transition: background-color 0.2s;
}

.actions .action-btn.secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.actions .action-btn:hover {
    opacity: 0.9;
}

.query-action-bar {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.table-responsive {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.table thead th {
    background-color: #e9ecef;
    border-bottom-width: 1px;
    white-space: nowrap;
}

.page-info-display {
    font-weight: 500;
    color: #495057;
}

.pagination-controls .btn {
    min-width: 100px;
}

.status-cell .badge {
    cursor: default;
}

.operations-cell a {
    margin: 0 5px;
    color: #6c757d;
    transition: color 0.2s;
}

.operations-cell a:hover {
    color: #0d6efd;
}

.operations-cell .delete-icon:hover {
    color: #dc3545;
}

.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-actions .input-group {
    max-width: 150px;
}