/* =========================
   SICKBAY THEME COLORS
========================= */
:root {
    --color-nursery: #FAE240;      /* Yellow */
    --color-primary: #E80175;      /* Pink */
    --color-secondary: #74BD54;    /* Green */
    --navy: #2c3e50;
    --text-muted: #8e9aaf;
}

body {
    background-color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
}

.main-container {
    padding: 20px;
    max-width: 1850px;
    margin: auto;
}

/* =========================
   HEADER & BUTTONS
========================= */
.header{
      border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.letter-spacing { letter-spacing: 1px; }

.btn-add-new {
    background: white;
    border: 1px solid var(--color-nursery);
    color: var(--color-secondary);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 10px;
}

.btn-add-new:hover {
    background: var(--color-nursery);
    color: white;
    border: 1px solid var(--color-secondary);
}

.btn-home {
    background: white;
    border: 1px solid #ddd;
    color: var(--color-secondary);
    padding: 8px 15px;
    border-radius: 10px;
}

/* =========================
   SUMMARY CARDS
========================= */
.card-summary {
    border: none;
    border-radius: 15px;
    border-left: 5px solid #ccc;
}

.border-nursery { border-left-color: var(--color-nursery) !important; }
.border-primary-pink { border-left-color: var(--color-primary) !important; }
.border-secondary-green { border-left-color: var(--color-secondary) !important; }

.card-summary h6 {
    font-size: 0.8rem;
    color: #435163;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #cbd5e1 !important; /* Soft grey icons */
}

/* .bg-light-yellow { background-color: #fff9db; }
.bg-light-pink { background-color: #fff0f6; }
.bg-light-green { background-color: #ebfbee; } */

/* =========================
   SEARCH BAR
========================= */
.search-card { border-radius: 15px; }
.btn-filter {
    border: 1px solid var(--color-nursery);
    color: var(--color-secondary);
    font-weight: 600;
}
.btn-reset {
    border: 1px solid var(--color-nursery);
    color: var(--color-nursery);
    font-weight: 600;
}

/* =========================
   TABLE DESIGN
========================= */
.custom-table thead th {
    background: white;
    color: #435163;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
}

.custom-table tbody tr {
    transition: all 0.2s;
}

.custom-table tbody td {
    padding: 15px 10px;
    border-bottom: 1px solid #f8f9fa;
    color: #435163;
    font-size: 0.9rem;
}

/* Status Badge */
.status-badge-active {
    background-color: #0d9488;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
}

/* Action Buttons */
.btn-edit-table {
    color: #3b82f6;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-right: 5px;
}

.btn-delete-table {
    color: #ef4444;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

/* =========================
   MODAL SAVING BUTTON
========================= */
.btn-save-main {
    background: var(--color-secondary);
    color: white;
    border-radius: 10px;
    font-weight: 600;
}

.btn-save-main:hover {
    background: #5a9e3f;
    color: white;
}