:root {

    /* Brand Palette */
    --color-primary: #0f766e;
    --color-primary-light: #14b8a6;
    --color-primary-dark: #115e59;

    --color-accent: #1d4ed8;
    --color-accent-soft: #dbeafe;

    --color-cream: #f8f6f1;
    --color-white: #ffffff;

    --color-bg: #f5f7f8;
    --color-surface: #ffffff;

    --color-border: #e5e7eb;

    --color-text: #1f2937;
    --color-text-muted: #6b7280;

    --shadow-sm: 0 2px 8px rgba(15, 118, 110, 0.06);
    --shadow-md: 0 10px 25px rgba(15, 118, 110, 0.08);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 24px;

    /* Flash Messages */
    --color-success-bg: #ecfdf5;
    --color-success-text: #047857;
    --color-success-border: #6ee7b7;

    --color-warning-bg: #fffbeb;
    --color-warning-text: #b45309;
    --color-warning-border: #fcd34d;

    --color-error-bg: #fef2f2;
    --color-error-text: #b91c1c;
    --color-error-border: #fca5a5;

    --color-info-bg: #eff6ff;
    --color-info-text: #1d4ed8;
    --color-info-border: #93c5fd;
}

/* =========================================================
   Base
   ========================================================= */

/* body {
    font-family: "Inter", "Helvetica Neue", sans-serif;
    font-weight: 400;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
} */

/* =========================================================
   Typography
   ========================================================= */

/* .top-nav-links,
.side-nav,
h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.6rem;
}

h3 {
    font-size: 2rem;
}

p {
    color: var(--color-text-muted);
} */

/* =========================================================
   Links
   ========================================================= */

/* a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-primary-dark);
} */

/* =========================================================
   Layout
   ========================================================= */

/* .content {
    padding: 2.5rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
}

.content form {
    margin: 0;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
} */

/* =========================================================
   Navigation
   ========================================================= */

/* .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 120rem;
    padding: 1.5rem 2rem;
    margin: 0 auto;
}

.top-nav-title a {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.top-nav-title span {
    color: var(--color-accent);
}

.top-nav-links a {
    margin-left: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.top-nav-links a:hover {
    color: var(--color-primary);
} */

/* =========================================================
   Sidebar
   ========================================================= */

/* .side-nav {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.side-nav-item {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: all 0.2s ease;
}

.side-nav-item:hover {
    background: rgba(20, 184, 166, 0.08);
    color: var(--color-primary);
} */

/* =========================================================
   Buttons
   ========================================================= */

/* .button,
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-light)
    );

    border: none;
    border-radius: 14px;
    color: white;
    font-weight: 600;
    padding: 1rem 1.8rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.25);
}

.button:hover,
button:hover,
input[type='submit']:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
} */

/* =========================================================
   Tables
   ========================================================= */

/* table {
    background: transparent;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

thead {
    background: rgba(20, 184, 166, 0.06);
}

th {
    padding: 1.2rem 1rem;
    color: var(--color-text);
    font-weight: 700;
    border-bottom: 1px solid var(--color-border);
    white-space: nowrap;
}

td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--color-text-muted);
}

tbody tr {
    transition: background 0.2s ease;
}

tbody tr:hover {
    background: rgba(20, 184, 166, 0.03);
} */

/* =========================================================
   Forms
   ========================================================= */

/* .input {
    margin-bottom: 1.8rem;
}

.input label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--color-text);
}

.input input,
.input select,
.input textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    background: white;
    transition: all 0.2s ease;
    box-shadow: none;
}

.input input:focus,
.input select:focus,
.input textarea:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
    outline: none;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.error-message {
    color: var(--color-error-text);
    font-size: 1.3rem;
    margin-top: 0.4rem;
} */

/* =========================================================
   Flash Messages
   ========================================================= */

.message {
    padding: 1rem 1.4rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    border: 1px solid;
    font-weight: 500;
}

.message.success {
    background: var(--color-success-bg);
    color: var(--color-success-text);
    border-color: var(--color-success-border);
}

.message.warning {
    background: var(--color-warning-bg);
    color: var(--color-warning-text);
    border-color: var(--color-warning-border);
}

.message.error {
    background: var(--color-error-bg);
    color: var(--color-error-text);
    border-color: var(--color-error-border);
}

.message.hidden {
    display: none;
}

/* =========================================================
   Paginator
   ========================================================= */
/* 
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin-top: 2rem;
    padding: 0;
}

.pagination li a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: white;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.pagination li.active a,
.pagination li a:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
} */

/* =========================================================
   Utilities
   ========================================================= */

/* .actions a {
    font-weight: 600;
    margin-right: 0.6rem;
}

.related {
    margin-top: 2rem;
}

.view.content .text {
    margin-top: 1.2rem;
} */

/* =========================================================
   Error Pages
   ========================================================= */

/* .error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
} */

/* =========================================================
   Responsive
   ========================================================= */

/* @media screen and (max-width: 768px) {

    .content {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .top-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .side-nav {
        margin-bottom: 1.5rem;
    }

    .side-nav-item {
        display: inline-block;
        margin-right: 0.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    } */
}