/* Основные стили */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

/* Карточки */
.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Вложения файлов */
.attachment-item {
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
}

.attachment-item:hover {
    background-color: #e9ecef;
}

.attachment-link {
    text-decoration: none;
    color: #0d6efd;
}

.attachment-link:hover {
    text-decoration: underline;
}

/* Формы */
.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Навигация */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Алерты */
.alert {
    border-radius: 8px;
}

/* Футер */
footer {
    margin-top: auto;
}