/* Mystical Consultations Pro - Frontend Styles */

.mcp-user-dashboard {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.mcp-dashboard-header {
    margin-bottom: 30px;
}

.mcp-dashboard-header h2 {
    color: #2c3e50;
    margin: 0;
}

/* Sections */
.mcp-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mcp-section h3 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Subscription Status */
.mcp-subscription-status {
    text-align: center;
}

.mcp-status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

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

.mcp-status-badge.inactive {
    background: #fff3cd;
    color: #856404;
}

.mcp-status-badge.pending {
    background: #cce5ff;
    color: #004085;
}

.mcp-status-badge.answered {
    background: #d4edda;
    color: #155724;
}

.mcp-status-active,
.mcp-status-inactive {
    padding: 20px;
}

/* Forms */
.mcp-form {
    max-width: 600px;
}

.mcp-form-group {
    margin-bottom: 20px;
}

.mcp-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.mcp-form-group input[type="text"],
.mcp-form-group input[type="email"],
.mcp-form-group input[type="file"],
.mcp-form-group select,
.mcp-form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.mcp-form-group textarea {
    resize: vertical;
}

.mcp-form-help {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.mcp-form-actions {
    margin-top: 25px;
}

/* Buttons */
.mcp-btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mcp-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.mcp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Messages */
.mcp-message {
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.mcp-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mcp-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Table */
.mcp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.mcp-table th,
.mcp-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.mcp-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #2c3e50;
}

.mcp-table tbody tr:hover {
    background: #f9f9f9;
}

.mcp-empty {
    text-align: center;
    color: #999;
    padding: 30px;
    font-style: italic;
}

/* Response Cards */
.mcp-response-card {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.mcp-response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.mcp-response-category {
    background: #667eea;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.mcp-response-date {
    color: #666;
    font-size: 13px;
}

.mcp-response-question {
    margin-bottom: 20px;
}

.mcp-response-question strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
}

.mcp-response-answer strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 10px;
}

.mcp-guidance-text {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    line-height: 1.7;
    color: #2c3e50;
}

/* Bank Details */
.mcp-bank-details {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.mcp-bank-details h4 {
    margin-top: 0;
    color: #2c3e50;
}

.mcp-bank-info {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
    line-height: 1.8;
}

.mcp-amount {
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
    margin-top: 15px;
}

.mcp-payment-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
}

.mcp-payment-note p {
    margin: 0;
    color: #856404;
}

/* Subscription Widget */
.mcp-subscription-widget {
    padding: 15px;
}

.mcp-widget-active,
.mcp-widget-inactive {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
}

.mcp-widget-active {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.mcp-widget-inactive {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
}

.mcp-widget-icon {
    font-size: 32px;
    margin-right: 15px;
}

.mcp-widget-content h4 {
    margin: 0 0 5px 0;
}

.mcp-widget-content p {
    margin: 0;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .mcp-user-dashboard {
        padding: 10px;
    }
    
    .mcp-section {
        padding: 15px;
    }
    
    .mcp-response-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mcp-table {
        font-size: 14px;
    }
    
    .mcp-table th,
    .mcp-table td {
        padding: 8px;
    }
}
