/* Layout */
.nelx-grid { display: grid; grid-gap: 16px; }
.nelx-col-2 { grid-template-columns: 1fr 1fr; }
.nelx-card { border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; background: #fff; margin-top: 20px; }
.nelx-card-head { font-weight: 600; margin-bottom: 12px; }
.nelx-divider { height: 1px; background: #e5e7eb; margin: 16px 0; }
.nelx-field label { display: block; font-weight: 500; margin-bottom: 8px; }
.nelx-field small { display: block; color: #6b7280; }
.nelx-input, .nelx-field input[type="text"], .nelx-field input[type="number"], .nelx-select, select {
    width: 100%; padding: 8px 10px; border: 1px solid #d1d5db; border-radius: 8px; box-sizing: border-box;
}
.nelx-radios label { margin-right: 16px; }
.nelx-sched-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.nelx-actions { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.nelx-inline-msg { min-height: 20px; font-weight: 600; }
.nelx-inline-msg.ok { color: #059669; }
.nelx-inline-msg.error { color: #dc2626; }
/* Schedule row layout */
.nelx-schedule-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px !important;
}
.nelx-schedule-row .nelx-field {
    min-width: 0;
}
/* Switch */
.nelx-switch { position: relative; display: inline-block; width: 60px; height: 24px; }
.nelx-switch-input { opacity: 0; width: 0; height: 0; }
.nelx-switch-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: #d1d5db; transition: .2s; border-radius: 24px; }
.nelx-switch-slider:before { content: ""; position: absolute; height: 16px; width: 16px; left: 4px; top: 4px; background: white; transition: .2s; border-radius: 50%; }
.nelx-switch-input:checked + .nelx-switch-slider { background: #2563eb; }
.nelx-switch-input:checked + .nelx-switch-slider:before { transform: translateX(36px); }
.nelx-switch-label { font-weight: 600; }
.nelx-switch-slider:after { content: 'OFF'; color: white; display: block; position: absolute; transform: translate(-50%, -50%); top: 50%; left: 70%; font-size: 10px; font-family: Verdana, sans-serif; font-weight: bold; }
input:checked + .nelx-switch-slider:after { content: 'ON'; left: 30%; }
/* Work hours */
.nelx-day { border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px; margin-bottom: 10px; }
.nelx-day-title { font-weight: 600; margin-bottom: 8px; }
.nelx-slot-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.nelx-slot-row .sep { opacity: .6; }
.nelx-add-slot { margin-top: 8px; }
/* Tags */
.nelx-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.nelx-tag { display: inline-flex; align-items: center; gap: 8px; background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 10px; padding: 6px 10px; margin-bottom: 8px; }
.nelx-tag .x { background: transparent; border: 0; font-size: 16px; line-height: 1; cursor: pointer; color: #666; padding: 4px 6px; }
.nelx-tag .nelx-edit-day { background: transparent; border: 0; cursor: pointer; color: #555; padding: 4px 6px; }
.nelx-tag .x:hover, .nelx-tag .nelx-edit-day:hover { background: transparent; }
.nelx-tag .x:hover { color: #444; }
.nelx-tag .nelx-edit-day:hover { color: #444; }
/* Buttons */
.nelx-btn, button.nelx-btn {
    padding: 8px 16px; border-radius: 8px; border: 0; cursor: pointer; font-weight: 600;
    background: inherit;
    color: inherit;
}
.nelx-btn.nelx-outline { border: 1px solid #d1d5db; }
.nelx-btn.nelx-small { padding: 4px 12px; font-size: 14px; }
.nelx-btn:disabled { opacity: 0.6; cursor: not-allowed; }
/* Inline action buttons (icon-only) */
.nelx-actions-inline { display: flex; gap: 6px; flex-wrap: wrap; }
.nelx-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; padding: 4px !important; border-radius: 6px; cursor: pointer; background: #f3f4f6; border: 1px solid #e5e7eb; color: #555; transition: background 0.2s; position: relative !important; }
.nelx-icon-btn svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.nelx-icon-btn:hover { opacity: 0.85; background: #e5e7eb; }
.nelx-icon-btn.nelx-delete { background: #fee2e2; color: #dc2626; }
.nelx-icon-btn.nelx-delete:hover { background: #555; border: #555; }
.nelx-icon-btn.nelx-info { color: #fff; }
.nelx-icon-btn:disabled,
.nelx-icon-btn[disabled] {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}
.nelx-icon-btn:disabled:hover,
.nelx-icon-btn[disabled]:hover {
    background: #f3f4f6 !important;
    border-color: #e5e7eb !important;
}

/* ================= MODAL ROOT ================= */
#nelx-modal-root {
    position: fixed;
    inset: 0;
    z-index: 99999; 
    pointer-events: none;
}

/* Only the modal itself can receive clicks */
#nelx-modal-root .nelx-modal {
    pointer-events: auto;
    z-index: 100000; /* Even higher for the modal wrapper */
}

/* ================= MODAL WRAPPER ================= */
.nelx-modal {
    position: fixed;
    inset: 0;
    z-index: 100000; /* Highest possible */
    pointer-events: auto;

    /* JetPopup-style viewport anchoring */
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;
}

.nelx-modal[aria-hidden="true"] {
    display: none;
}

/* ================= BACKDROP ================= */
.nelx-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: auto;
    z-index: 1;
}

/* ================= MODAL CARD ================= */
.nelx-modal-card {
    position: relative; /* IMPORTANT: no fixed, no transform */
    background: #fff;
    width: min(720px, calc(100% - 24px));
    max-height: min(90vh, calc(100% - 24px));
    overflow-y: auto;
    border-radius: 14px;
    padding: 16px;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,.2);
    pointer-events: auto;
}

/* ================= HEADER ================= */
.nelx-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.nelx-modal-head h3 {
    margin: 0;
    font-size: 1.25rem;
}

/* ================= CLOSE BUTTON (UNCHANGED) ================= */
.nelx-modal-close {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}

.nelx-modal-close:hover {
    color: #111;
}

/* ================= FOOTER ================= */
.nelx-modal-foot {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 12px;
}

/* ================= MOBILE FIXES ONLY ================= */
@media (max-width: 768px) {
    /* Keep modal centered in viewport */
    .nelx-modal {
        align-items: center;
        justify-content: center;
        padding: 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nelx-modal-card {
        position: relative;
        z-index: 2;
    }

    /* Ensure modal card is properly sized on mobile */
    .nelx-modal-card {
        width: calc(100% - 32px);
        max-height: calc(100vh - 32px);
    }

    .nelx-modal-foot {
        flex-direction: column;
    }

    .nelx-modal-foot .nelx-btn {
        width: 100%;
    }
    
    /* Fix for iOS Safari */
    @supports (-webkit-touch-callout: none) {
        .nelx-modal {
            height: -webkit-fill-available;
        }
        
        .nelx-modal-card {
            max-height: -webkit-fill-available;
        }
    }
}

.nelx-modal-open {
    overflow: hidden !important;
    position: relative;
    height: 90vh;
}

/* ================= REST OF STYLES ================= */
/* Appointment Info Grid */
.nelx-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.nelx-info-grid > div {
    display: flex;
    flex-direction: column;
}
.nelx-info-grid label {
    font-weight: 500;
    margin-bottom: 10px;
}
.nelx-info-grid span:not(.nelx-skeleton-wrapper),
.nelx-info-grid input,
.nelx-info-grid select {
    margin-bottom: 16px;
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}
.nelx-info-grid span.nelx-skeleton-wrapper {
    border: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    background: transparent !important;
    display: block !important;
}

/* Slide-in Alert */
#nelx-alert-root { 
    position: fixed; 
    top: 20px; 
    right: 16px; 
    z-index: 10000; 
    pointer-events: none; /* Allow clicks through when not visible */
}
.nelx-alert { 
    position: relative; 
    background: #fff; 
    padding: 16px; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    animation: slide-in 0.3s ease-out; 
    pointer-events: auto; /* Make alert clickable */
}
.nelx-alert.ok svg { fill: #059669; }
.nelx-alert.error svg { fill: #dc2626; }
.nelx-alert svg { width: 24px; height: 24px; }
@keyframes slide-in { 
    from { transform: translateX(100%); opacity: 0; } 
    to { transform: translateX(0); opacity: 1; } 
}

/* Mobile positioning - same as desktop */
@media (max-width: 768px) {
    #nelx-alert-root {
        top: 20px;
        right: 16px;
        left: auto;
        bottom: auto;
    }
    
    .nelx-alert {
        max-width: calc(100vw - 32px);
    }
    
    /* Adjust for WordPress admin bar */
    .admin-bar #nelx-alert-root {
        top: 46px;
    }
}

/* Spinner */
.nelx-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: nelx-spin .8s linear infinite; margin-left: 6px; }
@keyframes nelx-spin { to { transform: rotate(360deg); } }

/* Micro spinner for small buttons */
.nelx-micro-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid #ffffff;
    animation: nelx-spin 0.8s infinite linear;
    z-index: 10;
    box-sizing: border-box;
}
.nelx-icon-btn.nelx-danger .nelx-micro-spinner,
.nelx-icon-btn.nelx-primary .nelx-micro-spinner,
.nelx-icon-btn:not(.nelx-danger):not(.nelx-primary) .nelx-micro-spinner {
    border-top: 2px solid #ffffff;
}
.nelx-actions-inline[data-loading="true"] .nelx-icon-btn,
.nelx-client-actions-inline[data-loading="true"] .nelx-icon-btn {
    opacity: 0.7;
}
.nelx-icon-btn.nelx-loading svg {
    opacity: 0.5;
}

/* Range options layout */
.nelx-range-opts {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nelx-range-opts input, .nelx-range-opts select {
    max-width: 120px;
    flex: 0 0 auto;
}
.nelx-appt-range {
    width: 100% !important;
    margin-top: 12px;
}

/* Enhanced modal skeleton styling */
.nelx-skeleton-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 8px;
}
.nelx-modal-body .nelx-skeleton-line {
    height: 40px;
    width: 100%;
    margin-bottom: 16px;
    background: #f0f0f0;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.nelx-modal-body .nelx-skeleton-line:last-child {
    margin-bottom: 0;
}
.nelx-modal-body label .nelx-skeleton-line {
    height: 20px;
    width: 100px;
    margin-bottom: 10px;
}

/* Shimmer animation for skeletons */
.nelx-skeleton-line::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Time dropdown styling */
.nelx-time-dropdown {
    position: relative;
    width: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
    min-height: 40px;
    display: flex;
    align-items: center;
}
.nelx-time-dropdown .nelx-skeleton-line {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 40px !important;
    width: 100% !important;
    background: #f0f0f0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.nelx-time-dropdown .nelx-skeleton-line::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}
.nelx-time-dropdown select:not(.initialized) {
    display: none !important;
}
.nelx-time-dropdown select.initialized {
    display: block !important;
    width: 100%;
    padding: 8px 10px;
    padding-right: 35px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center/16px !important;
    transition: background-color .2s ease, color .2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: .01px;
    text-overflow: '';
    opacity: 0;
}
.nelx-time-dropdown select.initialized.show {
    opacity: 1;
}
.nelx-time-dropdown select.initialized + .nelx-skeleton-line {
    display: none !important;
}
.nelx-slot-row .nelx-time-dropdown {
    flex: 1;
    min-width: 80px;
}
.nelx-schedule-row {
    content-visibility: auto;
    contain-intrinsic-size: 100px;
}
.nelx-error {
    color: #dc2626;
    padding: 16px;
    text-align: center;
}

/* Flatpickr calendar styling */
.flatpickr-calendar .flatpickr-months .flatpickr-monthDropdown-months {
    display: inline-block;
    width: auto;
    margin-right: 10px;
}
.flatpickr-calendar .flatpickr-months .flatpickr-yearDropdown {
    display: inline-block;
    width: auto;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.disabled {
    color: #ccc !important;
    cursor: not-allowed !important;
    background: transparent !important;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
    }
   
    /* Stack schedule row on mobile */
    .nelx-schedule-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .nelx-schedule-row .nelx-field {
        width: 100%;
    }
   
    /* Stack columns on mobile */
    .nelx-col-2 {
        grid-template-columns: 1fr;
    }
   
    /* Stack appointment info in single column on mobile */
    .nelx-info-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
   
    /* Better action button spacing on mobile */
    .nelx-actions-inline, .nelx-client-actions-inline {
        gap: 4px;
        justify-content: flex-start;
    }
   
    .nelx-icon-btn {
        width: 32px;
        height: 32px;
    }
   
    /* Better slot row layout on mobile */
    .nelx-slot-row {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
   
    .nelx-slot-row .sep {
        display: none;
    }
   
    .nelx-slot-row .nelx-time-dropdown {
        min-width: 100%;
    }
   
    .nelx-slot-row .nelx-remove-slot {
        align-self: flex-end;
        margin-top: 4px;
    }
   
    /* Better day layout on mobile */
    .nelx-day {
        padding: 12px;
    }
   
    /* Better card layout on mobile */
    .nelx-card {
        padding: 12px;
        margin-top: 16px;
    }
   
    /* Better range options on mobile */
    .nelx-range-opts {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
   
    .nelx-range-opts input,
    .nelx-range-opts select {
        max-width: 100%;
    }
   
    /* Better schedule header on mobile */
    .nelx-sched-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
   
    /* Better actions on mobile */
    .nelx-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    .nelx-tags {
        flex-direction: column;
        align-items: stretch;
    }
   
    .nelx-tag {
        justify-content: space-between;
    }
}

/* Enhanced Elementor Widget Styles */
.nelx-elementor-widget {
    position: relative;
    z-index: 1;
}

/* Fix for Elementor shortcode widget */
.elementor-widget-shortcode .nelx-modal {
    z-index: 10050 !important;
}

/* Ensure modals work properly in Elementor */
.elementor-section .nelx-modal-card {
    margin: 0 auto;
}

/* Mobile positioning fixes for Elementor */
@media (max-width: 768px) {
    .elementor-element .nelx-modal-card {
        width: calc(100vw - 40px) !important;
        max-height: calc(100vh - 40px) !important;
        margin: 0 !important; /* Changed from 20px auto to 0 */
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .elementor-element .nelx-modal {
        align-items: center !important; /* Changed from flex-start to center */
        justify-content: center;
        padding: 20px;
        overflow-y: auto;
    }
    
    /* Fix for modal backdrop */
    .elementor-element .nelx-modal-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    /* Better positioning for modals in mobile */
    .elementor-element #nelx-modal-root {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
}

/* Prevent Elementor from interfering with modal positioning */
.elementor-edit-area-active .nelx-modal {
    z-index: 99999 !important;
}

/* Ensure proper stacking context */
.elementor-element {
    position: static;
}

/* Fix for mobile viewport */
html.nelx-modal-open,
body.nelx-modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* Better mobile modal positioning */
@media (max-width: 768px) {
    #nelx-modal-root .nelx-modal {
        align-items: flex-start;
        padding-top: 20px;
        padding-bottom: 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    #nelx-modal-root .nelx-modal-card {
        margin: auto;
        max-height: calc(100% - 40px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix for iOS Safari */
    @supports (-webkit-touch-callout: none) {
        #nelx-modal-root .nelx-modal {
            height: -webkit-fill-available;
        }
        
        #nelx-modal-root .nelx-modal-card {
            max-height: -webkit-fill-available;
        }
    }
}

/* Enhanced button styles for Elementor widgets */
.nelx-elementor-widget .nelx-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

/* Fix for skeleton loading in Elementor */
.elementor-widget-nelx_schedule_editor .nelx-skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Enhanced switch styles for Elementor */
.elementor-widget-nelx_schedule_editor .nelx-switch {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.elementor-widget-nelx_schedule_editor .nelx-switch-slider:after {
    font-size: 9px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Google Meet Settings Widget */
.nelx-google-meet-settings {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
}

.nelx-google-meet-settings h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.nelx-google-meet-settings .nelx-field {
    margin-bottom: 20px;
}

.nelx-google-meet-settings .nelx-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.nelx-google-meet-settings .nelx-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #111827;
    background: #fff;
    transition: border-color 0.2s ease;
}

.nelx-google-meet-settings .nelx-field input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.nelx-google-meet-settings .nelx-field .description {
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.nelx-google-meet-settings .nelx-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.nelx-google-meet-settings .nelx-btn {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nelx-google-meet-settings .nelx-btn.nelx-primary {
    background: #1a73e8;
    color: #fff;
}

.nelx-google-meet-settings .nelx-btn.nelx-primary:hover {
    background: #0d62d9;
    transform: translateY(-1px);
}

.nelx-google-meet-settings .nelx-btn.nelx-danger {
    background: #ef4444;
    color: #fff;
}

.nelx-google-meet-settings .nelx-btn.nelx-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.nelx-google-meet-settings .nelx-status {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.nelx-google-meet-settings .nelx-status.nelx-success {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.nelx-google-meet-settings .nelx-status.nelx-warning {
    color: #d97706;
    background: rgba(217, 119, 6, 0.1);
}

.nelx-google-meet-settings .nelx-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.nelx-google-meet-settings .nelx-message.nelx-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.nelx-google-meet-settings .nelx-message.nelx-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .nelx-google-meet-settings .nelx-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nelx-google-meet-settings .nelx-actions .nelx-btn {
        width: 100%;
        text-align: center;
    }
    
    .nelx-google-meet-settings .nelx-actions .nelx-status {
        margin-top: 8px;
    }
}