/* Basic Admin Styles */
.mm-admin-wrap { padding: 20px; }
.mm-table { width: 100%; border-collapse: collapse; }
.mm-table th, .mm-table td { padding: 12px; border: 1px solid #ddd; }

/* Frontend Styles */
.mm-chat-window { 
    height: 400px; 
    border: 1px solid #ddd; 
    overflow-y: auto; }

/* Therapist Dashboard */
.mm-dashboard {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mm-request-list {
    display: grid;
    gap: 1rem;
    margin-top: 20px;
}

.mm-request-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mm-request-card h4 {
    margin: 0 0 10px 0;
    color: #1a356e;
}

.mm-meta {
    color: #666;
    font-size: 0.9em;
    margin: 10px 0;
}

.notice.notice-success {
    margin: 10px 0;
    padding: 10px;
}

/* In mm-styles.css */
.mm-signup-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hide WordPress elements on registration page */
body.page-id-XX .site-header,
body.page-id-XX .site-footer,
body.page-id-XX .wp-block-navigation {
    display: none !important;
}

/* Chat interface */
.mm-chat-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 2rem;
}

.mm-chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

.mm-chat-input {
    width: 100%;
    padding: 1rem;
    border-top: 1px solid #ddd;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.mm-send-message {
    width: 100%;
    padding: 1rem;
    background: #1a356e;
    color: white;
    border: none;
    cursor: pointer;
}

.send-whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.send-whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Add button spacing */
.mm-admin-wrap .button {
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Button colors */
.mm-admin-wrap .button {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.mm-admin-wrap .button.send-whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
}

.mm-admin-wrap .button:hover {
    opacity: 0.9;
}

/* Add to mm-styles.css */
.mm-admin-wrap .button {
    margin-right: 5px;
    margin-bottom: 5px;
}

.send-whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.send-whatsapp-btn:hover {
    background-color: #128C7E;
}