/* Переменные цветов и общих значений */
:root {
    /* Цвета */
    --primary-color: #00796b;
    --primary-light: #48a999;
    --primary-dark: #004d40;
    
    --secondary-color: #f8faf9;
    --text-color: #2d3748;
    --text-primary: #1a202c;
    --text-secondary: #718096;
    --text-light: #718096;
    --text-dark: #1a202c;
    
    --border-color: #e2e8f0;
    --border-light: #f7fafc;
    
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --error-color: #f56565;
    --danger-color: #f56565;
    --info-color: #4299e1;
    
    --background-color: #f8faf9;
    --card-background: #ffffff;
    --sidebar-background: #ffffff;
    --surface-color: #ffffff;
    --hover-color: #f7fafc;
    
    /* Размеры */
    --sidebar-width: 260px;
    --header-height: 70px;
    --border-radius: 8px;
    --border-radius-small: 4px;
    --border-radius-large: 12px;
    
    /* Шрифты */
    --font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 14px;
    --font-size-sm: 12px;
    --font-size-lg: 16px;
    --font-size-xl: 18px;
    --font-size-2xl: 24px;
    
    /* Тени */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    
    /* Переходы */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-sidebar: 1000;
    --z-modal: 1050;
    --z-dropdown: 1010;
}