/* Modern Dashboard Theme */
:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --surface-color: #ffffff;
    --background-color: #f3f4f6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --radius-lg: 1rem;
    --radius-md: 0.75rem;
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.rcp-dashboard {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.rcp-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

.rcp-card:hover {
    transform: translateY(-2px);
}

.rcp-header {
    margin-bottom: 2rem;
}

.rcp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.rcp-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.rcp-input-group {
    margin-bottom: 1.5rem;
}

.rcp-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.rcp-input, .rcp-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: #f9fafb;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.rcp-input:focus, .rcp-select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background-color: #fff;
}

.rcp-btn-primary {
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.3);
}

.rcp-btn-primary:hover {
    opacity: 0.9;
}

/* Result Section Styles */
.rcp-result-container {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.rcp-result-header {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.rcp-result-main-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
}

.rcp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rcp-stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
}

.rcp-stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rcp-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rcp-highlight {
    color: #8b5cf6;
}

.rcp-highlight-green {
    color: #10b981;
}

.rcp-info-box {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.rcp-alert-box {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
