
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2f8;
}
.empty-icon {
    font-size: 72px;
    margin-bottom: 16px;
    opacity: 0.6;
}
.empty-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}
.empty-desc {
    font-size: 14px;
    color: #5b6e8c;
    margin-bottom: 24px;
}
.empty-create-btn {
    background: #6c5ce7;
    border: none;
    border-radius: 60px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(108,92,231,0.2);
    transition: 0.2s;
}
.empty-create-btn:active {
    transform: scale(0.96);
}
