/* CSS Variables for Car Files Shop - Based on original admin panel styles */
:root {
    /* Основная цветовая схема */
    --page-bg: #1a2529;
    --primary-bg: #2a3539;
    --primary-border: #e10026;
    --primary-color: #ffffff;
    --secondary-bg: #3a4549;
    --accent-color: #e10026;
    --accent-light: #ff6b8b;
    --text-muted: #6a7579;
    --text-white: #ffffff;
    --text-green: #28a745;
    --text-link: #e10026;
    --text-danger: #e10026;
    
    /* Границы и тени */
    --border-radius: 8px;
    --border-color: #4a5559;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-medium: 0 4px 12px rgba(225, 0, 38, 0.2);
    
    /* Анимации */
    --transition-fast: 0.2s;
    --transition-medium: 0.3s;
    --transition-slow: 0.5s;
    
    /* Отступы */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-xxl: 40px;
    
    /* Размеры шрифтов */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-xxl: 1.5rem;
}
    --hover-bg: #3a4549;
