/* 
 * Umeed Academy - Official Theme CSS
 * Replicated from original React/Tailwind design.
 */

:root {
    --primary: #FF3C00;
    --primary-foreground: #ffffff;
    --primary-muted: rgba(255, 60, 0, 0.1);
    --background: #ffffff;
    --foreground: #09090b;
    --muted: #f4f4f5;
    --muted-foreground: #71717a;
    --border: #e4e4e7;
    --destructive: #ef4444;
    --radius: 0.75rem; /* rounded-xl */
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--foreground);
    background-color: var(--background);
}

h1, h2, h3, .font-serif {
    font-family: 'Georgia', serif; /* Matching font-serif */
    font-weight: 800;
    letter-spacing: -0.025em;
}

/* Sidebar Styling */
.umeed-sidebar {
    width: 256px;
    height: 100vh;
    background: white;
    border-right: 1px solid var(--border);
    display: flex;
    flex-col: column;
    position: fixed;
    z-index: 50;
}

.umeed-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin: 0.25rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all 0.2s;
}

.umeed-nav-link:hover {
    background: var(--muted);
    color: var(--foreground);
}

.umeed-nav-link.active {
    background: var(--primary-muted);
    color: var(--primary);
}

/* Table & Card Styling */
.umeed-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.umeed-table th {
    background: var(--muted);
    padding: 1rem;
    font-weight: 600;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

.umeed-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.umeed-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Primary Elements */
.btn-umeed {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 0.6rem 1.25rem;
    font-weight: 600;
}

.btn-umeed:hover {
    background: #e63600;
}

.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
