.lux-card-desc {
    max-height: 12rem;
    overflow-y: auto;
}

.deliverable-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid rgba(226,232,240,0.8);
}

.deliverable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.pagination .page-link {
    border-radius: 8px;
    margin: 0 2px;
    border: 1px solid #dee2e6;
    color: #007bff;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #007bff;
    box-shadow: 0 2px 10px rgba(0,123,255,0.3);
}

.pagination .page-link:hover {
    background-color: rgba(0,123,255,0.1);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* Deliverable link list */
.deliverable-card .list-group-item {
    border: none;
    padding: 0.6rem 0;
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
}

.deliverable-card .list-group-item:last-child {
    border-bottom: none;
}

.deliverable-card .list-group-item:hover {
    background: rgba(0,123,255,0.05);
    padding-left: 0.25rem;
    transition: all 0.2s ease;
}
