
/* StockRudra AI - Complete Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #0B0E11;
    --bg-card: #151A21;
    --primary: #22c55e;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border: #374151;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: #000;
    border-right: 1px solid var(--border);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.sidebar a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.75rem;
    display: block;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.sidebar a:hover, .sidebar a.active {
    background-color: var(--bg-card);
    color: #fff;
}

.main-content {
    margin-left: 260px;
    padding: 2rem;
}

/* Forms */
input, select {
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    color: #fff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
}
