body {
    background-color: #f4f4f9;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Кастомные стили для карточек, дополняющие Bootstrap */
.custom-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.custom-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.custom-card-header h2 {
    margin: 0;
    font-size: 1.5em;
    color: #0d6efd; /* Bootstrap primary color */
}

.highlight {
    font-weight: bold;
    color: #dc3545; /* Bootstrap danger color */
}

a {
    text-decoration: none;
}