/**
 * Theme: Teal & Amber (matches welcome page)
 * Primary: #0d9488 | Accent: #14b8a6
 */
:root {
    --theme-primary: #0d9488;
    --theme-primary-dark: #0f766e;
    --theme-accent: #14b8a6;
    --theme-gradient: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    --bs-primary: #0d9488;
    --bs-primary-rgb: 13, 148, 136;
}
/* Bootstrap overrides */
.btn-primary,
.bg-primary,
.badge.bg-primary,
.text-primary {
    --bs-primary: #0d9488 !important;
}
.btn-primary {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important;
    border-color: #0d9488 !important;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%) !important;
    border-color: #0f766e !important;
}
.btn-outline-primary {
    border-color: #0d9488 !important;
    color: #0d9488 !important;
}
.btn-outline-primary:hover {
    background-color: rgba(13, 148, 136, 0.1) !important;
    border-color: #0d9488 !important;
    color: #0d9488 !important;
}
.bg-primary { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important; }
.text-primary { color: #0d9488 !important; }
.border-primary { border-color: #0d9488 !important; }
.badge.bg-primary { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important; }
.form-control:focus,
.form-select:focus { border-color: #0d9488 !important; box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.25) !important; }
.form-check-input:checked { background-color: #0d9488 !important; border-color: #0d9488 !important; }
.page-link:hover { color: #0d9488 !important; }
.page-item.active .page-link { background-color: #0d9488 !important; border-color: #0d9488 !important; }
.link-primary { color: #0d9488 !important; }
.link-primary:hover { color: #0f766e !important; }
.avatar-title.bg-primary { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important; }
.spinner-border.text-primary { color: #0d9488 !important; }
/* DataTables */
.dataTables_wrapper .dataTables_paginate .paginate_button.current { background: #0d9488 !important; border-color: #0d9488 !important; color: #fff !important; }
