/* ============================================
   ARQUIVO GERADO AUTOMATICAMENTE - NÃO EDITE
   Gerado em: 2026-02-24 15:16:21
   Use o painel Style Manager para fazer alterações
============================================ */

:root {
    --primary: #2271b1;
    --primary-dark: #135e96;
    --secondary: #ff5722;
    --secondary-dark: #f02c00;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --light: #f8fafc;
    --text: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;

    /* Button Styles */
    --button-border-radius: 6px;
    --button-padding: 0.5rem 1rem;
    --button-font-size: 0.9rem;
    --button-font-weight: 500;

    /* Font Styles */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-size-base: 16px;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;

    /* Layout Styles */
    --layout-container-width: 1200px;
    --layout-sidebar-width: 180px;
    --layout-gap: 1rem;
    --layout-border-radius: 8px;

    /* Header Styles */
    --header-height: 32px;
    --header-background: #1d2327;
    --header-text-color: #ffffff;

    /* Sidebar Styles */
    --sidebar-background: #1d2327;
    --sidebar-hover: #2c3338;
    --sidebar-text-color: #ffffff;
    --sidebar-width: 180px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--text);
    background: var(--light);
}

.container {
    max-width: var(--layout-container-width);
    margin: 0 auto;
    padding: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--button-padding);
    border-radius: var(--button-border-radius);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
}

.btn:hover {
    background: var(--light);
    border-color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary-dark);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
}

.card {
    background: white;
    border-radius: var(--layout-border-radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

