/* Design System - IBM style (Clean, Airy, Professional) */

:root {
    --cds-background: #ffffff;
    --cds-ui-01: #f4f4f4;
    --cds-ui-02: #ffffff;
    --cds-ui-03: #e0e0e0;
    --cds-interactive-01: #0f62fe; /* Blue 60 */
    --cds-interactive-02: #393939; /* Gray 80 */
    --cds-text-01: #161616;
    --cds-text-02: #525252;
    --cds-danger: #da1e28;
}

body {
    background-color: var(--cds-background);
    color: var(--cds-text-01);
}

/* Sidebar Styling */
.sidebar {
    width: 256px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--cds-ui-01);
    border-right: 1px solid var(--cds-ui-03);
    overflow-y: auto;
}

.main-content {
    margin-left: 256px;
    padding: 2rem;
    min-height: 100vh;
}

/* IBM Carbon-like buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-primary {
    background-color: var(--cds-interactive-01);
    color: white;
}

.btn-primary:hover {
    background-color: #0353e9;
}

/* Table styling */
.table-container {
    width: 100%;
    border-collapse: collapse;
}

.table-container th {
    background-color: var(--cds-ui-01);
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--cds-ui-03);
}

.table-container td {
    padding: 1rem;
    border-bottom: 1px solid var(--cds-ui-03);
    font-size: 0.875rem;
}

.table-container tr:hover {
    background-color: #f0f0f0;
}
