:root {
    --bg-color: #0b0f19;
    --sidebar-bg: #111827;
    --card-bg: #1f2937;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    min-height: 100vh;
}

/* Micro-animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.dashboard {
    display: flex;
    width: 100%;
    animation: fadeIn 0.5s ease-out;
}

.sidebar {
    width: 250px;
    background-color: var(--sidebar-bg);
    padding: 2rem 1rem;
    border-right: 1px solid #374151;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
}
.logo span { color: var(--accent); }

nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

nav a:hover, nav a.active {
    background-color: var(--accent);
    color: white;
    transform: translateX(5px);
}

.content {
    flex: 1;
    padding: 2rem 3rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    border-radius: 50%;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.metric-card h3 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trend {
    font-size: 0.875rem;
}
.trend.positive { color: var(--success); }

.data-lake {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
}

.data-lake h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.lake-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 150px;
}

.bar {
    flex: 1;
    background-color: var(--accent);
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
    opacity: 0.8;
}

.bar:hover {
    opacity: 1;
    filter: brightness(1.2);
}

/* MobleyAuth customization */
#auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}
