/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

//*
Theme Name: Mental Health Platform Child
Template: your-parent-theme
Version: 1.0
Description: Custom child theme for mental health platform
*/

/* ===========================
   FORM STYLES
   =========================== */

.mhp-form-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mhp-form {
    width: 100%;
}

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

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

.mhp-form-group input[type="text"],
.mhp-form-group input[type="email"],
.mhp-form-group input[type="password"],
.mhp-form-group input[type="tel"],
.mhp-form-group textarea,
.mhp-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.mhp-form-group input:focus,
.mhp-form-group textarea:focus,
.mhp-form-group select:focus {
    outline: none;
    border-color: #4a90e2;
}

.mhp-form-group small {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

.mhp-checkbox-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mhp-checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.mhp-form-notice {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.mhp-form-notice.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mhp-form-notice.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mhp-form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* ===========================
   BUTTON STYLES
   =========================== */

.mhp-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.mhp-btn-primary {
    background-color: #4a90e2;
    color: #fff;
}

.mhp-btn-primary:hover {
    background-color: #357abd;
}

.mhp-btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.mhp-btn-secondary:hover {
    background-color: #5a6268;
}

.mhp-btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.mhp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===========================
   DASHBOARD STYLES
   =========================== */

.mhp-dashboard {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.mhp-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.mhp-dashboard-header h1 {
    margin: 0;
    font-size: 28px;
    color: #333;
}

.mhp-dashboard-actions {
    display: flex;
    gap: 10px;
}

.mhp-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.stat-card h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
}

.stat-card p {
    margin: 0;
    opacity: 0.9;
}

.mhp-dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.mhp-dashboard-section {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mhp-dashboard-section h2 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 10px;
}

/* ===========================
   APPOINTMENTS
   =========================== */

.mhp-appointments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mhp-appointment-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f9f9f9;
    align-items: center;
}

.appointment-date,
.appointment-time {
    padding: 10px 15px;
    background: #4a90e2;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    min-width: 100px;
}

.appointment-date strong,
.appointment-time {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.appointment-date span {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

.appointment-details {
    flex: 1;
}

.appointment-details p {
    margin: 5px 0;
    font-size: 14px;
}

.appointment-actions {
    display: flex;
    gap: 8px;
}

.status-pending {
    color: #856404;
    background: #fff3cd;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.status-confirmed {
    color: #155724;
    background: #d4edda;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.status-cancelled {
    color: #721c24;
    background: #f8d7da;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

/* ===========================
   QUICK ACTIONS
   =========================== */

.mhp-quick-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mhp-quick-actions li {
    margin-bottom: 12px;
}

.mhp-quick-actions a {
    display: block;
    padding: 12px 15px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.mhp-quick-actions a:hover {
    background: #4a90e2;
    color: #fff;
    transform: translateX(5px);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .mhp-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .mhp-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .mhp-appointment-card {
        grid-template-columns: 1fr;
    }
    
    .mhp-dashboard-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .mhp-dashboard-actions .mhp-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 30px 0;
}/
