/* Container and Card Styles */
.card {
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Card Header Styles */
.card-header {
    background-color: #0b617e;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 8px 8px 0 0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* List Group Item Styles */
.list-group {
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.list-group-item {
    border: none;
    padding: 15px 20px;
    transition: background-color 0.2s, color 0.2s;
    font-size: 1rem;
    color: #333;
    border-radius: 10px;
    margin: 5px!important;

}

.list-group-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.list-group-item:hover {
    background-color: rgba(11, 97, 126, 0.11);
    color: #fff;
    cursor: pointer;
}

/* Link Styles */
.list-group-item-action {
    color: inherit;
    text-decoration: none;
}

.list-group-item-action:hover {
    text-decoration: none;
    color: white;
}

button.list-group-item a{
    color: #0b617e ;
}

button.list-group-item a:hover{
    text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .card-header {
        font-size: 1rem;
    }

    .list-group-item {
        padding: 10px 15px;
        font-size: 0.875rem;
    }
}