body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stat-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.card-header {
    background-color: #343a40;
    color: white;
    border-bottom: none;
}

.table th {
    border-top: none;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}


/* Добавляем к существующим стилям */
.store-filter {
    max-height: 200px;
    overflow-y: auto;
}

.form-check-label {
    cursor: pointer;
}

.store-checkbox:checked + .form-check-label {
    font-weight: bold;
    color: #0d6efd;
}

.badge {
    font-size: 0.75em;
}

.card-header {
    background-color: #343a40;
    color: white;
    border-bottom: none;
}

/* Остальные существующие стили остаются без изменений */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stat-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.table th {
    border-top: none;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

/* Добавьте в конец файла static/style.css */

/* Стили для страницы входа */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    background-color: white;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    font-size: 48px;
    margin-bottom: 10px;
}

/* Стили для формы входа */
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-1px);
}

/* Адаптивность для страницы входа */
@media (max-width: 576px) {
    .login-container {
        margin: 50px auto;
        padding: 20px;
    }
}