.empty-state {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    font-family: "Segoe UI", Roboto, sans-serif;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #374151;
}

.empty-state ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.empty-state li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #374151;
}

.empty-state li:last-child {
    border-bottom: none;
}

.empty-state li::before {
    content: "•";
    color: #3b82f6;
    font-size: 20px;
    line-height: 1;
}
