:root {
    --bg-body: #F5F6F8;
    --bg-sidebar: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F9FAFB;
    --text-main: #111111;
    --text-muted: #6B7280;
    --accent-green: #10B981;
    --accent-green-light: #059669;
    --accent-green-dark: #047857;
    --accent-yellow: #E5C232;
    --accent-yellow-light: #F59E0B;
    --accent-red: #EF4444;
    --border-color: #E5E7EB;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --primary-color: #4F46E5;
    --secondary-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --info-color: #3B82F6;
    --dark-color: #111111;
    --light-color: #F3F4F6;
    --bg-global: #F5F6F8;
    --text-primary: #111111;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border-light: #F0F0F0;
    --hover-bg: #F9FAFB;
    --badge-red: #EF4444;
    --avatar-purple: #8B5CF6;
    --sidebar-width: 260px;
    --header-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.main-wrapper {
    display: flex;
    min-height: 100vh;
}

/* =====================
   NAVBAR (Client Pages - Light Theme)
   ===================== */
.navbar-custom {
    background: var(--bg-sidebar);
    border-bottom: 1px solid var(--border-color);
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.navbar-custom .navbar-brand img {
    height: 32px;
}

.navbar-custom .nav-main {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    overflow-x: auto;
}

.navbar-custom .nav-main::-webkit-scrollbar {
    display: none;
}

.navbar-custom .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-custom .nav-link:hover {
    color: var(--text-primary);
    background: rgba(0,0,0,0.03);
}

.navbar-custom .nav-link.active {
    color: var(--accent-yellow-light);
    background: rgba(229, 194, 50, 0.1);
}

.navbar-custom .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-custom .btn-login {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 13px;
    padding: 6px 14px;
}

.navbar-custom .btn-login:hover {
    color: var(--text-primary);
}

.navbar-custom .btn-register {
    background: linear-gradient(135deg, #472A7A 0%, #6B4B9E 100%);
    color: white;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.navbar-custom .btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 42, 122, 0.3);
}

.main-client {
    background: var(--bg-body);
    min-height: calc(100vh - 60px);
    padding: 24px;
    padding-top: calc(60px + 24px) !important;
}

.main-client > .container {
    padding-top: 24px !important;
}

body:not(.has-sidebar) .main-client {
    min-height: 100vh;
}

/* =====================
   SIDEBAR (RoyalFreelance Style)
   ===================== */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s ease;
    padding-top: 20px;
}

.sidebar-logo {
    height: 64px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo-box {
    width: 32px;
    height: 32px;
    background: #111;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.sidebar-logo-text {
    font-weight: 600;
    font-size: 18px;
    color: #111;
}

.sidebar-menu {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.sidebar-section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9CA3AF;
    margin: 16px 24px 8px;
    font-weight: 500;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 44px;
    border-radius: 10px;
    color: #374151;
    text-decoration: none;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 150ms ease-in-out;
    cursor: pointer;
    border: none;
    background: transparent;
    width: calc(100% - 16px);
    text-align: left;
    margin: 2px 8px;
}

.sidebar-menu-item:hover {
    background: #F3F4F6;
    color: #111;
}

.sidebar-menu-item.active {
    background: #F3F4F6;
    color: #111;
    font-weight: 600;
}

.sidebar-menu-item i {
    font-size: 18px;
    width: 20px;
    color: #6B7280;
}

.sidebar-menu-item.active i {
    color: #111;
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--border-color);
}

.sidebar-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.sidebar-toggle-btn:hover {
    background: rgba(0,0,0,0.03);
}

/* =====================
   MAIN CONTENT AREA
   ===================== */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    background: var(--bg-body);
}

/* =====================
   HEADER
   ===================== */
.main-header {
    height: var(--header-height);
    background: var(--bg-sidebar);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: var(--sidebar-width);
    right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    color: var(--text-muted);
}

.header-icon-btn:hover {
    background: rgba(0,0,0,0.03);
    color: var(--text-primary);
}

.header-icon-btn .badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    background: var(--badge-red);
    color: white;
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 0 4px;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 12px 4px 4px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.header-user:hover {
    background: rgba(0,0,0,0.03);
}

.header-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #472A7A 0%, #6B4B9E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 13px;
    overflow: hidden;
}

.header-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-user-info {
    display: flex;
    flex-direction: column;
}

.header-user-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
}

.header-user-role {
    font-size: 11px;
    color: var(--text-muted);
}

/* =====================
   USER DROPDOWN
   ===================== */
.user-dropdown {
    position: relative;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 200;
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-header .user-name {
    font-weight: 600;
    font-size: 14px;
}

.dropdown-header .user-email {
    font-size: 12px;
    color: var(--text-muted);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 13px;
}

.dropdown-item:hover {
    background: rgba(0,0,0,0.03);
    color: var(--text-primary);
}

.dropdown-item i {
    width: 16px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

.dropdown-item.logout {
    color: var(--accent-red);
}

.dropdown-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* =====================
   PAGE CONTENT
   ===================== */
.page-content {
    padding: 92px 32px 32px;
    max-width: 1440px;
    margin: 0 auto;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.page-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary { 
    background-color: #472A7A;
    color: white;
}

.btn-primary:hover { 
    background-color: #3a2370;
}

.btn-secondary { 
    background-color: transparent; 
    border: 1px solid var(--border-color); 
    color: var(--text-primary); 
}

.btn-secondary:hover { 
    background-color: var(--bg-card-hover); 
    color: var(--accent-yellow-light);
}

.btn-success { 
    background-color: var(--accent-green); 
    color: white; 
}

.btn-success:hover { 
    background-color: var(--accent-green-light); 
}

.btn-danger { 
    background-color: var(--accent-red); 
    color: white; 
}

.btn-warning {
    background-color: var(--accent-yellow);
    color: var(--bg-body);
}

.btn-warning:hover {
    background-color: #d4af37;
}

.btn-pill {
    border-radius: 999px;
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-pill:hover {
    background: var(--bg-card-hover);
}

/* =====================
   STATS CARDS
   ===================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
}

.stat-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-icon-blue {
    background: #EFF6FF;
    color: #3B82F6;
}

.stat-icon-green {
    background: #ECFDF5;
    color: #10B981;
}

.stat-icon-yellow {
    background: #FFFBEB;
    color: #F59E0B;
}

.stat-icon-gray {
    background: #F3F4F6;
    color: #6B7280;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* =====================
   CONTENT GRID
   ===================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* =====================
   CARDS
   ===================== */
.content-card, .card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-light);
}

.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.btn-view-all {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    height: 32px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 500;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-view-all:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

/* Empty State */
.empty-state {
    background: var(--bg-body);
    border-radius: 12px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.empty-state-icon {
    font-size: 40px;
    color: var(--text-muted);
}

.empty-state-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================
   TABLE
   ===================== */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.data-table td {
    font-size: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.table-amount {
    font-weight: 600;
}

.table-date {
    color: var(--text-muted);
    font-size: 12px;
}

.text-red { color: var(--accent-red); }
.text-green { color: var(--accent-green); }

/* =====================
   FORMS
   ===================== */
.form-control, .form-select {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #472A7A;
    box-shadow: 0 0 0 3px rgba(71, 42, 122, 0.1);
    outline: none;
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* =====================
   TABS
   ===================== */
.nav-tabs-custom {
    border: none;
    display: flex;
    gap: 4px;
    background: var(--bg-body);
    padding: 4px;
    border-radius: 8px;
}

.nav-tab-custom {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s ease;
}

.nav-tab-custom.active {
    background: var(--bg-card);
    color: #472A7A;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* =====================
   MODALS
   ===================== */
.modal-backdrop.show {
    z-index: 9998;
}

.modal.show {
    z-index: 99999;
}

.modal-dialog {
    margin-top: 80px;
}

.modal-content {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #F0F0F0;
    padding: 20px 24px;
    background: #FFFFFF;
}

.modal-body {
    padding: 24px;
    background: #FFFFFF;
}

.modal-footer {
    border-top: 1px solid #F0F0F0;
    padding: 16px 24px;
    background: #FFFFFF;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.btn-close {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.btn-close:hover {
    opacity: 1;
}

/* =====================
   ALERTS
   ===================== */
.alert {
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    background: #FEE2E2;
    color: #DC2626;
    border: 1px solid #FECACA;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-info {
    background: #DBEAFE;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success::before,
.alert-danger::before,
.alert-warning::before,
.alert-info::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.alert-success::before { content: "\f00c"; }
.alert-danger::before { content: "\f071"; }
.alert-warning::before { content: "\f071"; }
.alert-info::before { content: "\f05a"; }

.alert-success .btn-close,
.alert-danger .btn-close,
.alert-warning .btn-close,
.alert-info .btn-close {
    margin-left: auto;
}

/* =====================
   BADGES
   ===================== */
.badge {
    padding: 4px 10px;
    font-weight: 500;
    font-size: 12px;
    border-radius: 6px;
}

.badge-pending { background: #FEF3C7; color: #92400E; }
.badge-processing { background: #DBEAFE; color: #1E40AF; }
.badge-confirmed { background: #D1FAE5; color: #065F46; }
.badge-abandoned { background: #F3F4F6; color: #6B7280; }
.badge-cancelled { background: #FEE2E2; color: #991B1B; }

/* =====================
   BALANCE CARD
   ===================== */
.balance-card {
    background: linear-gradient(135deg, #472A7A 0%, #6B4B9E 100%);
    border-radius: 12px;
    padding: 24px;
    color: white;
    box-shadow: 0 4px 20px rgba(71, 42, 122, 0.3);
}

.balance-card .btn-light {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: #111;
    font-weight: 600;
}

.balance-card .btn-light:hover {
    background: #d4af37;
    border-color: #d4af37;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
    background: transparent;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid transparent;
}

.hero-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================
   PAYMENT METHODS
   ===================== */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-methods img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.payment-methods img:hover {
    transform: scale(1.1);
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

.footer a {
    transition: color 0.15s ease;
}

.footer a:hover {
    color: #472A7A !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 32px;
}

.footer-brand span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #472A7A;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .main-header {
        left: 0;
    }
    
    .page-content {
        padding-top: 76px;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding: 76px 16px 16px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .page-actions {
        flex-wrap: wrap;
    }
    
    .btn-pill {
        flex: 1;
        justify-content: center;
    }
    
    .header-user-info {
        display: none;
    }
}

/* =====================
   UTILITIES
   ===================== */
.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }

.bg-white { background: var(--bg-card) !important; }
.bg-light { background: var(--bg-body) !important; }

.rounded-10 { border-radius: 10px; }
.rounded-12 { border-radius: 12px; }
.rounded-14 { border-radius: 14px; }

.shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); }
.shadow-md { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
