﻿.card {
    transition: all 0.3s ease;
}

    .card:hover {
        transform: translateY(-4px);
    }

.card-header {
    font-weight: 600;
}

.list-group-item {
    padding: 15px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
}

    .list-group-item a {
        color: #800000;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
    }

        .list-group-item a:hover {
            color: #0d6efd;
            padding-left: 8px;
            transition: 0.3s ease;
        }

@media (max-width: 768px) {
    .card-header h4 {
        font-size: 18px;
    }

    .list-group-item a {
        font-size: 14px;
    }
}
