/**
 * Taaycoon B2B Marketplace — Frontend Styles
 */

:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --dark: #0F172A;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.top-bar a:hover {
    text-decoration: underline !important;
}

.hero-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #2563EB 100%);
    color: #fff;
    padding: 4rem 0;
}

.hero-section .form-control {
    border: none;
    padding: 0.875rem 1.25rem;
}

.category-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e9ecef;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-card {
    border-left: 4px solid var(--primary);
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
}

.dashboard-sidebar .nav-link.active {
    font-weight: 600;
}

.dashboard-sidebar .nav-link:not(.active):hover {
    background: #f8f9fa;
}

.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.dashboard-content {
    flex: 1;
    padding: 1.5rem;
    background: #f4f6f9;
}

.page-header {
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.card-stat {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.card-stat .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
