/**
 * Frontend Modal Badge System
 * Provides distinct styling for frontend modals vs backend modals
 */

/* ========================================
   Frontend Modal Badge System
   ======================================== */

/* Frontend Modal Badge */
.tvk-frontend-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* Frontend Modal Headers */
.tvk-frontend-header {
    position: relative;
    background: linear-gradient(135deg, #f8fff8, #f1f8e9);
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.tvk-frontend-header h4 {
    color: #2E7D32;
    font-weight: 600;
    margin: 0 0 10px 0;
}

/* Frontend Choice Styling */
.tvk-frontend-choice {
    border-left: 4px solid #4CAF50;
    background: linear-gradient(135deg, #f8fff8, #f1f8e9);
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tvk-frontend-choice:hover {
    background: linear-gradient(135deg, #e8f5e8, #dcedc8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.tvk-frontend-choice h3 {
    color: #2E7D32;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.tvk-frontend-choice p {
    color: #388E3C;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.tvk-frontend-choice ul {
    margin: 0;
    padding-left: 20px;
    color: #4CAF50;
}

.tvk-frontend-choice li {
    margin-bottom: 5px;
    font-size: 13px;
}

.tvk-choice-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

/* Frontend Modal Container */
.tvk-frontend-modal .tvk-modal {
    border-top: 4px solid #4CAF50;
}

/* Responsive Design for Frontend Modals */
@media (max-width: 768px) {
    .tvk-frontend-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .tvk-frontend-choice {
        padding: 15px;
    }
    
    .tvk-frontend-choice h3 {
        font-size: 16px;
    }
}
