/* Основные стили для Nexasale */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.features-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonials-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    margin: 2rem 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn {
    border-radius: 20px;
    font-weight: 500;
}

.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
}

.btn-primary:hover {
    background-color: #5a6fd8;
    border-color: #5a6fd8;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.breadcrumb {
    background-color: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.table th {
    border-top: none;
    font-weight: 600;
}

.badge {
    border-radius: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-section .row > div {
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .features-section .row > div {
        margin-bottom: 1.5rem;
    }
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Стили для админ-панели */
.admin-stats .card {
    height: 100%;
}

.admin-table th {
    background-color: #f8f9fa;
}