.list-group {
    margin: 20px auto;
    max-width: 800px;
    color: black;
}

.list-group .panel {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.list-group .panel:hover {
    transform: translateY(-2px);
}

.list-group .panel-body {
    padding: 0;
}

.list-group .list-group-item {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    border-radius: 12px;
}

.list-group .row {
    display: flex;
    align-items: center;
}

.list-group .col-xs-6,
.list-group .col-xs-3 {
    padding: 10px;
}

.list-group .col-xs-6 {
    flex: 2;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.list-group .col-xs-3 {
    flex: 1;
    text-align: center;
}

.list-group .label {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.list-group .label-danger {
    background-color: #e74c3c;
    color: #fff;
}

.list-group img {
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}
