/* Matchmaking Platform Styles */
.mm-wrap { max-width: 1100px; margin: 0 auto; padding: 24px 16px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.mm-form-container { max-width: 680px; margin: 0 auto; background: #fff; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); padding: 40px; }
.mm-form-header h2 { font-size: 1.6rem; color: #1a1a2e; margin-bottom: 6px; }
.mm-form-header p { color: #666; margin-bottom: 24px; }
.mm-steps { display: flex; gap: 8px; margin-bottom: 32px; }
.mm-step { flex: 1; padding: 10px; text-align: center; background: #f0f0f0; border-radius: 8px; font-size: 0.85rem; color: #888; }
.mm-step.active { background: #c0392b; color: #fff; font-weight: 600; }
.mm-step-content { display: none; }
.mm-step-content.active { display: block; }
.mm-field-group { margin-bottom: 18px; }
.mm-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .mm-field-row { grid-template-columns: 1fr; } }
.mm-field-group label { display: block; font-size: 0.875rem; font-weight: 600; color: #333; margin-bottom: 6px; }
.mm-field-group input, .mm-field-group select, .mm-field-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 8px;
    font-size: 0.95rem; transition: border-color 0.2s; background: #fafafa; box-sizing: border-box;
}
.mm-field-group input:focus, .mm-field-group select:focus, .mm-field-group textarea:focus {
    outline: none; border-color: #c0392b; background: #fff;
}
.mm-req { color: #c0392b; }
.mm-btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
.mm-btn-primary { background: #c0392b; color: #fff; }
.mm-btn-primary:hover { background: #a93226; }
.mm-btn-outline { background: #fff; color: #c0392b; border: 2px solid #c0392b; }
.mm-btn-outline:hover { background: #fdf2f2; }
.mm-btn-whatsapp { background: #25d366; color: #fff; }
.mm-btn-whatsapp:hover { background: #1da851; }
.mm-btn:disabled { background: #ccc; color: #888; cursor: not-allowed; }
.mm-step-nav { display: flex; justify-content: space-between; margin-top: 24px; }
.mm-privacy-box, .mm-payment-info { background: #fdf8f8; border: 1px solid #f5c6c6; border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.mm-privacy-box h3, .mm-payment-info h3 { margin-bottom: 10px; color: #c0392b; }
.mm-checkbox-label { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; cursor: pointer; font-size: 0.9rem; }
.mm-checkbox-label input { margin-top: 3px; width: auto; }
.mm-login-link { text-align: center; margin-top: 16px; color: #666; font-size: 0.9rem; }
.mm-notice { padding: 16px; background: #fff8f0; border: 1px solid #f0c070; border-radius: 8px; color: #555; }
.mm-warning { background: #fff3f3; border-color: #f5c6c6; }
#mm-form-message, #mm-slip-message, #mm-interest-message { margin-top: 12px; padding: 12px; border-radius: 8px; display: none; }
.mm-success-msg { background: #eafaf1; color: #1e8449; border: 1px solid #a9dfbf; }
.mm-error-msg { background: #fdf2f2; color: #c0392b; border: 1px solid #f5c6c6; }

/* Dashboard */
.mm-dashboard { max-width: 800px; margin: 0 auto; }
.mm-dashboard-header h2 { font-size: 1.4rem; color: #1a1a2e; margin-bottom: 20px; }
.mm-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); padding: 24px; margin-bottom: 20px; }
.mm-card h3 { color: #1a1a2e; margin-bottom: 14px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
.mm-status-card { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: 12px; padding: 24px; margin-bottom: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.mm-status-pending { border-left: 4px solid #f39c12; }
.mm-status-approved { border-left: 4px solid #27ae60; }
.mm-status-rejected { border-left: 4px solid #c0392b; }
.mm-status-icon { font-size: 2rem; }
.mm-status-content h3 { margin: 0 0 6px; }
.mm-payment-details { background: #f9f9f9; border-radius: 8px; padding: 14px; margin: 12px 0; }
.mm-payment-details p { margin: 6px 0; }
.mm-notifications { list-style: none; padding: 0; }
.mm-notifications li { padding: 12px 0; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.mm-notifications li:last-child { border-bottom: none; }
.mm-unread .mm-notif-msg { font-weight: 600; }
.mm-notif-time { color: #999; font-size: 0.8rem; white-space: nowrap; }
.mm-profile-summary { display: flex; gap: 20px; }
.mm-profile-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.mm-profile-details p { margin: 4px 0; font-size: 0.9rem; color: #555; }
#mm-slip-form { display: flex; gap: 12px; align-items: center; margin-top: 10px; flex-wrap: wrap; }
.mm-success { color: #27ae60; margin-top: 10px; }

/* Browse Profiles */
.mm-browse-header { margin-bottom: 24px; }
.mm-browse-header h2 { font-size: 1.5rem; color: #1a1a2e; }
.mm-profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.mm-profile-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); overflow: hidden; transition: box-shadow 0.2s; }
.mm-profile-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.mm-profile-card-photo { height: 200px; background: #f5f5f5; overflow: hidden; }
.mm-profile-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.mm-no-photo { height: 100%; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 0.9rem; }
.mm-profile-card-body { padding: 18px; }
.mm-profile-card-body h3 { margin: 0 0 6px; color: #1a1a2e; }
.mm-profile-meta { color: #888; font-size: 0.83rem; margin-bottom: 8px; }
.mm-about { color: #666; font-size: 0.88rem; }
.mm-profile-card-actions { margin-top: 16px; }
.mm-match-badge { background: linear-gradient(135deg, #f093fb, #f5576c); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: inline-block; margin-bottom: 10px; }
.mm-empty { text-align: center; padding: 60px; color: #999; font-size: 1rem; }

/* Admin */
.mm-admin-wrap .mm-admin-stats { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.mm-stat { padding: 10px 18px; background: #f5f5f5; border-radius: 8px; font-size: 0.9rem; }
.mm-filter-bar { display: flex; gap: 8px; margin-bottom: 16px; }
.mm-filter-bar a { padding: 8px 16px; background: #f0f0f0; border-radius: 6px; text-decoration: none; color: #555; font-size: 0.9rem; }
.mm-filter-bar a.active { background: #c0392b; color: #fff; }
.mm-admin-table td { vertical-align: middle; padding: 10px 8px; }
.mm-badge { padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.mm-badge-pending { background: #fff3cd; color: #856404; }
.mm-badge-approved { background: #d4edda; color: #155724; }
.mm-badge-rejected { background: #f8d7da; color: #721c24; }