<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f5faf5;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Навбар с цветом #388e3c */
.navbar {
    background-color: #388e3c !important; /* Основной цвет навбара */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    color: white !important;
    transition: all 0.3s ease;
}

    .navbar-brand:hover {
        color: #e8f5e9 !important;
    }

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.1rem !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        color: white !important;
        background-color: rgba(255, 255, 255, 0.1);
    }
/* Стили для зеленых кнопок */
.btn-outline-primary {
    color: #388e3c;
    border-color: #388e3c;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #388e3c;
        border-color: #388e3c;
    }

    .btn-outline-primary:focus {
        box-shadow: 0 0 0 0.25rem rgba(56, 142, 60, 0.25);
    }

/* Дополнительные стили для карточек */
.card {
    border: 1px solid rgba(56, 142, 60, 0.125);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(56, 142, 60, 0.1);
    }

.card-title {
    color: #1b5e20;
}
/* Кнопка "Выйти" */
.navbar-nav .btn-link {
    color: white !important;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

    .navbar-nav .btn-link:hover {
        color: #e8f5e9 !important;
        text-decoration: underline;
    }
.action-btn {
    padding: 0.4rem 1.2rem; /* Увеличено для больших кнопок */
    font-size: 0.95rem;
    border-radius: 4px;
    margin: 0 4px;
    text-decoration: none;
    color: white !important;
    border: none;
    transition: all 0.2s ease;
    min-width: 110px; /* Фиксированная минимальная ширина */
    text-align: center;
    display: inline-block; /* Для правильного применения ширины */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-edit {
    background-color: #2196F3; /* Синий */
}

    .btn-edit:hover {
        background-color: #0b7fd8;
        transform: translateY(-1px);
        box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    }

.btn-details {
    background-color: #FFC107; /* Жёлтый */
    color: #212529 !important;
}

    .btn-details:hover {
        background-color: #e0a800;
        transform: translateY(-1px);
        box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    }

.btn-delete {
    background-color: #f44336; /* Красный */
}

    .btn-delete:hover {
        background-color: #d32f2f;
        transform: translateY(-1px);
        box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    }

/* Выравнивание кнопок в строку */
.action-buttons-container {
    display: flex;
    gap: 8px; /* Равномерные отступы между кнопками */
    margin: 10px 0;
}
.btn-success {
    background-color: #4caf50;
    border-color: #43a047;
}

    .btn-success:hover {
        background-color: #388e3c;
        border-color: #2e7d32;
    }
/* Фокус-стили */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #4caf50;
    border-color: #388e3c;
}

/* Основной контент */
.content {
    padding-top: 1.1rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 16px;
    padding: 20px;
    margin-right: 270px; /* Отступ для правого сайдбара */
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: #1b5e20;
}

    h1:focus {
        outline: none;
    }

/* Формы */
.form-control {
    border: 1px solid #c8e6c9;
}

    .form-control:focus {
        border-color: #81c784;
        box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    }

/* Валидация */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #4caf50;
}

.invalid {
    outline: 1px solid #d32f2f;
}

.validation-message {
    color: #d32f2f;
    font-size: 0.875rem;
}

/* Навбар */
.navbar {
    background-color: #1b5e20;
    color: white;
}

/* Таблицы */
.table {
    width: 100%;
    border-collapse: collapse;
}

    .table th {
        background-color: #388e3c;
        color: white;
        padding: 12px;
        text-align: left;
    }

    .table td {
        padding: 12px;
        border-bottom: 1px solid #e0e0e0;
    }

    .table tr:hover {
        background-color: #e8f5e9;
    }

/* Правый сайдбар */
.sidebar-container {
    width: 250px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
    color: white;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 1.5rem;
    background: linear-gradient(to left, #2e7d32, #388e3c);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Элементы меню */
.nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #e8f5e9;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .nav-item::before {
        content: '';
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: 0.5s;
    }

    .nav-item:hover::before {
        right: 100%;
    }

    .nav-item:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav-item.active {
        background-color: rgba(76, 175, 80, 0.2);
        border-right: 4px solid #4caf50;
    }

.nav-item-logout {
    padding: 0;
}

.nav-link-button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: #e8f5e9;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

    .nav-link-button:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: white;
    }

    .nav-link-button .nav-icon {
        transition: transform 0.3s ease;
    }

    .nav-link-button:hover .nav-icon {
        transform: scale(1.1);
    }

/* Иконки */
.nav-icon {
    width: 24px;
    font-size: 1.2rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-icon {
    transform: scale(1.1);
    color: #fff;
}

/* Разделитель */
.nav-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 1rem 1.5rem;
}

/* Основной контент с учетом сайдбара */
.main-content {
    margin-right: 250px;
    padding: 20px;
    transition: margin-right 0.3s ease;
}

/* Адаптивность */
@media (max-width: 992px) {
    .navbar-nav {
        padding-top: 1rem;
    }

    .nav-link {
        margin: 0.25rem 0 !important;
    }

    .navbar-nav .btn-link {
        display: block;
        margin: 0.25rem 0;
        padding: 0.5rem 1rem;
        text-align: left;
        width: 100%;
    }
}
/* Стили для зеленой пагинации */
.page-item .page-link {
    color: #388e3c;
    border: 1px solid #dee2e6;
}

.page-item.active .page-link {
    background-color: #388e3c;
    border-color: #388e3c;
    color: white;
}

.page-item.disabled .page-link {
    color: #6c757d;
}

.page-link:hover {
    color: #2e7d32;
    background-color: #e8f5e9;
    border-color: #dee2e6;
}

.page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(56, 142, 60, 0.25);
}
body {
    background-color: #f5faf5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Контейнер контента */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    flex: 1;
}

/* Стили для футера */
.footer {
    background-color: #388e3c;
    color: white;
    padding: 40px 0; /* Увеличиваем отступы */
    height: 100px; /* Фиксированная высота */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 60px; /* Отступ от основного контента */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.testimonial {
    max-width: 400px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.copyright {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: auto;
}


/* Удаленные стили Blazor-specific */
/*
.blazor-error-boundary {
    background: url(...) no-repeat 1rem/1.8rem, #2e7d32;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "Произошла ошибка.";
}
*/
</pre></body></html>