/**
 * ELXAO Meetings UI Styles
 * Meeting cards in chat and calendar views
 */

:root{
    --elxao-black: var(--black, #0B0B0B);
    --elxao-white: var(--white, #FFFFFF);
    --elxao-grey: var(--grey, #5A5A5A);
    --elxao-grey-light: var(--grey-light, #8A8A8A);
    --elxao-grey-rule: var(--grey-rule, #E8E8E8);
    --elxao-bg-alt: var(--bg-alt, #F7F7F7);
}

/* ===========================================================
   RESET LIST STYLES - Prevent theme bullets
   =========================================================== */

.elxao-meeting-wrapper,
.elxao-meeting-wrapper *,
.meeting-launch-btn,
.meeting-form-content,
.meeting-form-content * {
    list-style: none !important;
    list-style-type: none !important;
}

/* ===========================================================
   MEETING FORM DRAWER (matches cloud browser style)
   =========================================================== */

.elxao-meeting-wrapper {
    position: relative;
    display: inline-block;
}

.meeting-launch-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    border: 1px solid var(--elxao-grey-rule) !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease, border-color 0.2s ease !important;
    background: transparent !important;
    color: var(--elxao-black) !important;
    margin-bottom: 12px !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    line-height: 1.5 !important;
}

.meeting-launch-btn:hover {
    border-color: var(--elxao-black) !important;
    opacity: 0.75 !important;
    box-shadow: none !important;
}

.meeting-launch-btn .ex-launch-icon {
    display: none !important;
}

.elxao-meeting-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 10000;
    display: none;
}

.elxao-meeting-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.elxao-meeting-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 480px;
    max-width: 92vw;
    padding: 32px 28px;
    background: transparent;
    display: none;
    align-items: stretch;
    justify-content: flex-end;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 10001;
    pointer-events: none;
    /* Prevent layout shifts during page load */
    contain: layout style paint;
    content-visibility: auto;
}

.elxao-meeting-drawer.open {
    transform: translateX(0);
    pointer-events: auto;
}

.meeting-proposal-form {
    border: 1px solid var(--elxao-grey-rule);
    border-radius: 4px;
    padding: 24px;
    background: var(--elxao-white);
    font-family: inherit;
    box-shadow: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

/* Inline mode - remove card styling for My Account drawer context */
.drawer-section-content .meeting-proposal-form {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.meeting-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
}

.meeting-form-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

.meeting-close-btn {
    width: 32px;
    height: 32px;
    border: none !important;
    background: transparent !important;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #64748b !important;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meeting-close-btn:hover {
    color: #0f172a !important;
}

@media (max-width: 640px) {
    .elxao-meeting-drawer {
        width: 100vw;
        padding: 20px 14px;
    }

    .meeting-launch-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Meeting Card in Chat */
.meeting-card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 16px 0 !important;
}

.chat-message.meeting-card-container {
    all: initial !important;
    display: block !important;
    font-family: 'Helvetica Neue', 'HelveticaNeue', 'Helvetica Neue LT Pro', Helvetica, Arial, sans-serif !important;
}

.meeting-card {
    background: var(--elxao-white) !important;
    border: 1px solid var(--elxao-grey-rule) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: none !important;
    transition: none !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.meeting-card:hover {
    box-shadow: none !important;
}

.meeting-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--elxao-bg-alt);
    border-bottom: 1px solid var(--elxao-grey-rule);
}

.meeting-card-icon {
    font-size: 32px;
    line-height: 1;
    color: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meeting-card-title-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.meeting-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--elxao-black);
}

.meeting-card-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meeting-card-body {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.meeting-card-info-row {
    font-size: 14px !important;
    color: var(--elxao-grey) !important;
    line-height: 1.4 !important;
    margin: 2px 0 !important;
    padding: 0 !important;
}

.meeting-card-info-row strong {
    color: var(--elxao-black) !important;
    font-weight: 600 !important;
    margin-right: 6px !important;
}

.meeting-card-history {
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid #e2e8f0 !important;
}

.meeting-card-description {
    margin-top: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.meeting-card-description strong {
    color: #0f172a;
    display: block;
    margin-bottom: 6px;
}

/* Meeting Actions */
.meeting-card-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 16px !important;
    border-top: 1px solid #e5e7eb !important;
    background: #fafbfc !important;
}

.meeting-card-admin-actions {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

/* Base button style - matches Filter/Reset pattern */
.meeting-action-btn {
    flex: 1 1 auto !important;
    min-width: 120px !important;
    padding: 10px 16px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    transition: opacity 0.2s ease, border-color 0.2s ease !important;
    font-family: inherit !important;
    white-space: nowrap !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid transparent !important;
    text-decoration: none !important;
    line-height: 1.5 !important;
    min-height: 38px !important;
}

/* Primary action buttons (Accept, Join) - dark background like Filter button */
.meeting-accept-btn,
.meeting-join-btn {
    background: var(--elxao-black) !important;
    color: var(--elxao-white) !important;
    border-color: var(--elxao-black) !important;
}

.meeting-accept-btn:hover,
.meeting-join-btn:hover {
    opacity: 0.75 !important;
}

/* Secondary action buttons (Decline, Calendar) - light background like Reset button */
.meeting-decline-btn,
.meeting-calendar-btn {
    background: transparent !important;
    color: var(--elxao-black) !important;
    border-color: var(--elxao-grey-rule) !important;
}

.meeting-decline-btn:hover,
.meeting-calendar-btn:hover {
    border-color: var(--elxao-black) !important;
}

/* Small cancel button (for admin/PM) */
.meeting-action-btn-small {
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    font-family: inherit !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #FDE047 !important;
    text-decoration: none !important;
    line-height: 1.5 !important;
    min-height: 38px !important;
    width: 100% !important;
}

.meeting-cancel-btn {
    background: #FEFCE8 !important;
    color: #854D0E !important;
    border-color: #FDE047 !important;
}

.meeting-cancel-btn:hover {
    background: #FEF9C3 !important;
    border-color: #FACC15 !important;
}

/* Action links - match secondary button style */
.meeting-action-link {
    flex: 1 1 auto !important;
    min-width: 120px !important;
    padding: 10px 16px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-align: center !important;
    text-decoration: none !important;
    background: transparent !important;
    color: var(--elxao-black) !important;
    border: 1px solid var(--elxao-grey-rule) !important;
    transition: opacity 0.2s ease, border-color 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    line-height: 1.5 !important;
    min-height: 38px !important;
}

.meeting-action-link:hover {
    border-color: var(--elxao-black) !important;
    opacity: 0.75 !important;
}

.meeting-card[data-status="cancelled"] {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 640px) {
    .meeting-card-actions {
        flex-direction: column !important;
    }

    .meeting-card-title {
        font-size: 16px;
    }

    .meeting-action-btn,
    .meeting-action-link {
        padding: 10px 20px !important;
        font-size: 14px !important;
        width: 100% !important;
        min-width: unset !important;
    }
}

/* Fix for narrow containers (chat card view) */
@media (max-width: 480px) {
    .meeting-card-actions {
        flex-direction: column !important;
    }

    .meeting-action-btn,
    .meeting-action-link {
        width: 100% !important;
        min-width: unset !important;
    }
}

/* Meeting Proposal Form (for drawer) */
.meeting-proposal-form {
    border: 1px solid var(--elxao-grey-rule);
    border-radius: 4px;
    padding: 24px;
    background: var(--elxao-white);
    font-family: inherit;
    box-shadow: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.meeting-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--elxao-grey-rule);
}

.meeting-form-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

.meeting-form-field {
    margin-bottom: 16px;
}

.meeting-form-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.meeting-form-field label .required {
    color: #ef4444;
}

.meeting-form-field input,
.meeting-form-field textarea,
.meeting-form-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.meeting-form-field input:focus,
.meeting-form-field textarea:focus,
.meeting-form-field select:focus {
    outline: none;
    border-color: #141413;
    box-shadow: 0 0 0 3px rgba(20, 20, 19, 0.1);
}

.meeting-form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.meeting-form-helper {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
}

.meeting-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-start;
}

button.meeting-form-submit,
.meeting-form-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 12px 24px !important;
    background: var(--elxao-black) !important;
    color: var(--elxao-white) !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease !important;
    line-height: 1.5 !important;
    min-height: 38px !important;
    box-sizing: border-box !important;
}

button.meeting-form-submit:hover:not(:disabled),
.meeting-form-submit:hover:not(:disabled) {
    opacity: 0.75 !important;
}

.meeting-form-submit:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* ===========================================================
   CALENDAR OPTIONS MODAL
   =========================================================== */

.meeting-calendar-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.meeting-calendar-modal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 440px;
    width: 90%;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.meeting-calendar-modal-header {
    padding: 24px 28px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.meeting-calendar-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

.meeting-calendar-modal-close {
    background: none !important;
    border: none !important;
    font-size: 28px;
    line-height: 1;
    color: #64748b !important;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.2s ease;
}

.meeting-calendar-modal-close:hover {
    background: none !important;
    color: #0f172a !important;
}

.meeting-calendar-modal-body {
    padding: 28px;
}

.meeting-calendar-modal-body p {
    margin: 0 0 20px 0;
    font-size: 15px;
    color: #64748b;
}

.meeting-calendar-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meeting-calendar-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--elxao-white) !important;
    border: 1px solid var(--elxao-grey-rule);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s ease;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a !important;
    text-align: left;
}

.meeting-calendar-option:hover {
    background: var(--elxao-bg-alt) !important;
    border-color: #2a2a28 !important;
    color: #0f172a !important;
}

.meeting-calendar-option svg {
    flex-shrink: 0;
}

.meeting-calendar-option svg,
.meeting-calendar-option:hover svg {
    opacity: 1 !important;
    filter: none !important;
}

.meeting-calendar-option svg path,
.meeting-calendar-option:hover svg path {
    transition: none !important;
    fill: currentColor !important;
}

.meeting-calendar-option span {
    flex: 1;
    color: #0f172a !important;
}

.meeting-calendar-option:hover span {
    color: #0f172a !important;
}

/* ===========================================================
   NOTION-STYLE CALENDAR TOOLBAR - UNIFIED DESIGN
   - All buttons use the same light beige theme
   - Left: Navigation arrows (merged) + Sync All (separate)
   - Center: Month/Year title
   - Right: Today + View selector (both separate, with gap)
   =========================================================== */

/* Toolbar layout */
.fc .fc-toolbar {
    gap: 12px;
}

.fc .fc-toolbar-chunk {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===========================================================
   BASE BUTTON STYLING - UNIFIED LIGHT THEME
   =========================================================== */

/* All buttons share the same base style */
.fc .fc-button {
    margin: 0 !important;
    background: transparent !important;
    color: var(--elxao-black) !important;
    border: 1px solid var(--elxao-grey-rule) !important;
    border-radius: 4px !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    padding: 10px 16px !important;
    min-height: 38px !important;
    line-height: 1.45 !important;
    font-family: inherit !important;
    text-transform: capitalize !important;
    box-shadow: none !important;
    transition: opacity 0.15s ease, border-color 0.15s ease, background-color 0.15s ease !important;
    cursor: pointer !important;
}

/* Hover state */
.fc .fc-button:hover {
    border-color: var(--elxao-black) !important;
}

/* Active/pressed state */
.fc .fc-button:active {
    background: var(--elxao-bg-alt) !important;
    transform: translateY(0) !important;
}

/* Disabled state */
.fc .fc-button:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    background: transparent !important;
}

/* Active view button */
.fc .fc-button-active {
    background: var(--elxao-bg-alt) !important;
    font-weight: 600 !important;
}

/* ===========================================================
   LEFT SIDE: NAVIGATION ARROWS (SEGMENTED) + SYNC ALL
   =========================================================== */

/* Button group container - for arrows only */
.fc .fc-button-group {
    display: inline-flex;
    gap: 0;
    align-items: center;
    margin-right: 8px !important;
}

/* Buttons inside a group (arrows) - remove individual styling */
.fc .fc-button-group .fc-button {
    border-radius: 0 !important;
    border-right: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/* Ensure hovered/focused button border paints above its neighbor (prevents “missing” right border) */
.fc .fc-button-group .fc-button:hover,
.fc .fc-button-group .fc-button:focus,
.fc .fc-button-group .fc-button:focus-visible {
    position: relative;
    z-index: 2;
}

/* On hover/active, show the right-edge border (divider) in hover color */
.fc .fc-button-group .fc-button:not(:last-child):hover,
.fc .fc-button-group .fc-button:not(:last-child):active {
    border-right: 1px solid var(--elxao-black) !important;
}

/* First button in group (left arrow) - round left side only */
.fc .fc-button-group .fc-button:first-child {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

/* Last button in group (right arrow) - round right side only, restore border */
.fc .fc-button-group .fc-button:last-child {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    border-right: 1px solid var(--elxao-grey-rule) !important;
}

/* Make sure the outer right border also switches to hover color */
.fc .fc-button-group .fc-button:last-child:hover,
.fc .fc-button-group .fc-button:last-child:active {
    border-right-color: var(--elxao-black) !important;
}

/* Navigation arrows - compact width */
.fc .fc-prev-button,
.fc .fc-next-button {
    min-width: 38px !important;
    padding: 8px 12px !important;
}

/* Sync All button - standalone, separate from arrows */
.fc .fc-syncAll-button {
    margin-left: 0 !important;
}

/* ===========================================================
   RIGHT SIDE: TODAY + VIEW SELECTOR
   =========================================================== */

/* Right toolbar chunk - add gap between Today and View selector */
.fc .fc-toolbar-chunk:last-child {
    gap: 8px !important;
}

/* Today button - ensure it's visible and matches View selector */
.fc .fc-today-button {
    background: transparent !important;
    color: var(--elxao-black) !important;
    border: 1px solid var(--elxao-grey-rule) !important;
    border-radius: 4px !important;
    font-weight: 400 !important;
    padding: 10px 16px !important;
    box-shadow: none !important;
}

.fc .fc-today-button:hover {
    border-color: var(--elxao-black) !important;
}

.fc .fc-today-button:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    background: transparent !important;
}

/* View selector button - EXACT copy of beige button style (.project-editor-launch-btn) */
.fc .fc-viewSelector-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    border: 1px solid var(--elxao-grey-rule) !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease, border-color 0.2s ease !important;
    background: transparent !important;
    color: var(--elxao-black) !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    line-height: 1.5 !important;
    /* Override inherited FullCalendar styles */
    text-transform: none !important;
    font-family: inherit !important;
    min-height: auto !important;
    margin: 0 !important;
}

.fc .fc-viewSelector-button:hover {
    border-color: var(--elxao-black) !important;
    opacity: 0.75 !important;
    box-shadow: none !important;
}

/* ===========================================================
   GENERAL TOOLBAR STYLING
   =========================================================== */

/* Toolbar spacing */
.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 20px;
}

/* Remove default FullCalendar shadows and outlines */
.fc .fc-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Focus state for accessibility */
.fc .fc-button:focus-visible {
    outline: 2px solid var(--elxao-black) !important;
    outline-offset: 2px !important;
}

/* Add a subtle divider between adjacent buttons so each still feels distinct */
.fc .fc-button:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.06);
}

/* Remove spacing between separate groups so arrays visually join */
.fc-toolbar .fc-button-group + .fc-button-group,
.fc-toolbar .fc-button-group + .fc-button {
    margin-left: 0;
}

/* Hover visual feedback (individual buttons still respond) */
.fc .fc-button:hover {
    filter: brightness(0.95);
}

/* Ensure toolbar chunks don't add extra gaps that break the joined appearance */
.fc .fc-toolbar-chunk {
    display: inline-flex;
    gap: 0;
    align-items: center;
}

/* Override inline-mode styles to remove card styling */
.elxao-meeting-wrapper.inline-mode .meeting-proposal-form {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* ===========================================================
   MY ACCOUNT DRAWER CONTEXT OVERRIDES
   These ensure Schedule Meeting matches editorial style in page-my-account.php
   =========================================================== */

/* Form labels - match page-my-account.php editorial style */
.drawer-section-content .meeting-form-field label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #0B0B0B !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Form inputs - match page-my-account.php editorial style */
.drawer-section-content .meeting-form-field input,
.drawer-section-content .meeting-form-field textarea,
.drawer-section-content .meeting-form-field select {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid #E8E8E8 !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    color: #0B0B0B !important;
    background: #FFFFFF !important;
    font-family: 'Helvetica Neue', 'HelveticaNeue', 'Helvetica Neue LT Pro', Helvetica, Arial, sans-serif !important;
    letter-spacing: -0.01em !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.drawer-section-content .meeting-form-field input:focus,
.drawer-section-content .meeting-form-field textarea:focus,
.drawer-section-content .meeting-form-field select:focus {
    outline: none !important;
    border-color: #0B0B0B !important;
    box-shadow: 0 0 0 1px #0B0B0B !important;
}

/* Form buttons - match page-my-account.php editorial style */
.drawer-section-content .meeting-form-submit,
.drawer-section-content button.meeting-form-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    background: #0B0B0B !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: opacity 0.3s ease !important;
    font-family: 'Helvetica Neue', 'HelveticaNeue', 'Helvetica Neue LT Pro', Helvetica, Arial, sans-serif !important;
    box-shadow: none !important;
    min-height: auto !important;
    line-height: 1.5 !important;
}

.drawer-section-content .meeting-form-submit:hover:not(:disabled),
.drawer-section-content button.meeting-form-submit:hover:not(:disabled) {
    opacity: 0.75 !important;
    background: #0B0B0B !important;
}

.drawer-section-content .meeting-form-submit:disabled,
.drawer-section-content button.meeting-form-submit:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
}

/* Form actions footer */
.drawer-section-content .meeting-form-actions {
    display: flex !important;
    gap: 12px !important;
    margin-top: 24px !important;
    padding-top: 0 !important;
    border-top: none !important;
}
