/* studio/static/studio/css/globals.css */

/* 1. Global Font Import: Montserrat (Light to Black) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800;900&display=swap');

/* 2. arthatSTUDIO Design Tokens */
:root {
    /* The Electric Action Color */
    --brand-blue: #2563eb;
    --brand-blue-hover: #1d4ed8;

    /* The Premium Dark Slate Palette */
    --slate-bg: #0f172a;
    /* Deep dark background */
    --slate-border: #1e293b;
    /* Subtle dark borders */
    --slate-muted: #64748b;
    /* Secondary text */
}

/* 3. Base Typography Reset */
html,
body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 4. Custom Utility Classes (To keep HTML clean) */
.text-brand {
    color: var(--brand-blue);
}

.bg-brand {
    background-color: var(--brand-blue);
}

.bg-brand:hover {
    background-color: var(--brand-blue-hover);
}

.text-slate-muted {
    color: var(--slate-muted);
}

/* Sidebar Grouping */
.data-panel-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

/* Premium Button Look */
.saas-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    background: #1e293b;
    /* Subtle contrast from dark background */
    border: 1px solid #334155;
    color: #e2e8f0;
    border-radius: 8px;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.saas-btn:hover {
    background: #334155;
    border-color: #475569;
    cursor: pointer;
}

/* Input Focus Glow */
.saas-input {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: white;
    padding: 0.6rem;
    width: 100%;
}

.saas-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}