.page-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.list-group-item {
    border: none;
    padding: 14px 20px;
    color: var(--dark-color);
    transition: all 0.3s;
    border-bottom: 1px solid #f0f0f0 !important;
    display: flex;
    align-items: center;
    position: relative;
}

.list-group-item:before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.list-group-item:hover {
    background-color: rgba(52, 152, 219, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
    text-decoration: none;
}

.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
}

.sidebar .card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border: none;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sidebar .card-header {
    background: white;
    color: var(--dark-color);
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0 !important;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.sidebar .card-header i {
    margin-right: 8px;
    color: var(--primary-color);
}

.card-link {
    display: inline-block;
    background-color: #f8f9fa;
    color: var(--dark-color);
    padding: 6px 12px;
    border-radius: 4px;
    margin: 3px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.card-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-wrapper {
    margin-top: 30px;
}

.page-link {
    color: var(--primary-color);
    border: 1px solid #dee2e6;
    padding: 8px 15px;
}

.page-link:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.card .card-body a{
    margin-left: 0;
}