/* Quick Links — Dashboard Entry Points */

.quick-links-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e1e8ef;
    border-radius: 6px;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.quick-link-item:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

.quick-link-item i {
    font-size: 15px;
}

.quick-links-empty {
    text-align: center;
    padding: 16px;
    color: #94a3b8;
    font-size: 14px;
}

/* Manage Modal Checklist */
.quick-links-checklist {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 400px;
    overflow-y: auto;
}

.quick-links-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.quick-links-checklist-item:hover {
    background: #f1f5f9;
}

.quick-links-checklist-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    margin: 0;
}

.quick-links-checklist-item i {
    font-size: 15px;
    color: #64748b;
    width: 20px;
    text-align: center;
}

.quick-links-checklist-item label {
    margin: 0;
    font-size: 14px;
    color: #0f172a;
    cursor: pointer;
}
