@import "tailwindcss";

:root {
    --bc-primary: #2563eb;
    --bc-primary-hover: #1d4ed8;
    --bc-success: #059669;
    --bc-bg: #f8fafc;
    --bc-border: #e2e8f0;
    --bc-text-main: #0f172a;
    --bc-text-muted: #64748b;
    --bc-radius: 1rem;
}

body {
    background-color: var(--bc-bg);
    color: var(--bc-text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Layout Containers */
.bc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Base Cards - Clean & Professional */
.bc-card {
    background: #ffffff;
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    transition: all 0.2s ease;
}

.bc-card-hover:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}

/* Inputs & Forms */
.bc-input, .bc-select {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bc-input:focus, .bc-select:focus {
    border-color: var(--bc-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Buttons */
.bc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.bc-btn-primary {
    background: var(--bc-primary);
    color: #ffffff;
}
.bc-btn-primary:hover { background: var(--bc-primary-hover); }

.bc-btn-secondary {
    background: #ffffff;
    border: 1px solid var(--bc-border);
    color: var(--bc-text-main);
}
.bc-btn-secondary:hover { background: #f1f5f9; }

.bc-btn-ghost {
    color: var(--bc-text-muted);
}
.bc-btn-ghost:hover { background: #f1f5f9; color: var(--bc-text-main); }

/* Icons sizing fix */
.bc-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Badges */
.bc-badge {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Nav Pill */
.bc-nav-pill {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bc-text-muted);
    transition: all 0.2s;
}
.bc-nav-pill:hover, .bc-nav-pill.active {
    background: #eff6ff;
    color: var(--bc-primary);
}

/* Typography */
.bc-heading { font-family: 'Outfit', sans-serif; font-weight: 700; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
