/* Empty State Design */
.mobile-myroadmap-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(93deg, rgba(98, 98, 141, 0.20) 3.36%, rgba(27, 27, 39, 0.20) 99.24%);
    border: 1px dashed rgba(148, 163, 184, 0.3);
    border-radius: 20px;
    min-height: 400px;
}

.empty-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-icon-wrapper i {
    font-size: 40px;
    color: rgba(139, 92, 246, 0.8);
}

.empty-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.empty-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 320px;
}

.empty-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.empty-action-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.empty-action-btn:active {
    transform: translateY(0) scale(0.98);
}

.empty-action-btn i:first-child {
    font-size: 18px;
}

.empty-action-btn i:last-child {
    font-size: 16px;
}


