/* Navigation Tabs - REMOVED */
/* .nav-tabs styles removed as we're now using side menu */

/* Import side menu styles from main style.css */
/* The side menu styles are already included in style.css */

/* Subscription Item Styles */
.subscription-item {
    position: relative;
}

.subscription-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.payment-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #86868b;
}

.payment-date i {
    font-size: 12px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    width: fit-content;
}

.status.active {
    background-color: #d4edda;
    color: #155724;
}

.status.active i {
    font-size: 10px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86868b;
    font-size: 32px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.empty-state p {
    font-size: 16px;
    color: #86868b;
    margin: 0;
}

.browse-btn {
    background-color: #007AFF;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.browse-btn:hover {
    background-color: #0056CC;
    transform: translateY(-1px);
}

.browse-btn:active {
    transform: translateY(0);
}

.empty-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.test-btn {
    background-color: #34C759;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.test-btn:hover {
    background-color: #2DAA4A;
    transform: translateY(-1px);
}

.test-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 414px) {
    .nav-tabs {
        margin: 0 16px 20px;
    }
    
    .nav-tab {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .nav-tab i {
        font-size: 14px;
    }
    
    .empty-state {
        padding: 40px 16px;
    }
    
    .empty-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .empty-state h3 {
        font-size: 18px;
    }
    
    .empty-state p {
        font-size: 14px;
    }
}

/* PWA Support */
@media (display-mode: standalone) {
    /* No specific PWA adjustments needed for side menu */
}

/* Focus states for accessibility */
.browse-btn:focus,
.test-btn:focus {
    outline: 2px solid #007AFF;
    outline-offset: 2px;
}
