/* Core Container */
.xeezone-meeting-container {
    position: static;
    display: inline-block;
    z-index: 1000;
    margin: 1em 0;
    box-sizing: border-box;
}

/* Trigger Button */
.xeezone-trigger-btn {
    background: #87e64b;
    color: #000;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin: 0;
    white-space: nowrap;
}

.xeezone-trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Meeting Widget - Full Positional Control */
.xeezone-meeting-widget {
    position: fixed;
    top: 100px;
    left: 100px;
    width: 380px;
    background: #FFF5ED;
    border: 2px solid #87e64b;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 1001;
    opacity: 0;
    transform: none;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.xeezone-meeting-widget.active {
    display: block;
    opacity: 1;
}

/* Widget Header */
.xeezone-meeting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: #FFF5ED;
    position: sticky;
    top: 0;
    z-index: 2;
}

.xeezone-meeting-header h3 {
    margin: 0;
    font-size: 1.2em;
    color: #000;
}

.xeezone-close-btn {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    color: #666;
    padding: 5px;
    transition: color 0.2s ease;
}

.xeezone-close-btn:hover {
    color: #000;
}

/* Scrollable Area */
.xeezone-widget-scroll-container {
    max-height: min(70vh, 600px);
    overflow-y: auto;
    padding: 0 20px;
}

/* Form Elements */
.xeezone-widget-form {
    padding: 15px 0;
}

.xeezone-form-group {
    margin-bottom: 20px;
}

.xeezone-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
}

#xeezone-name,
#xeezone-email,
#xeezone-whatsapp,
#xeezone-date,
#xeezone-time {
    width: 100%;
    height: 52px;
    padding: 15px;
    border: 2px solid #87e64b;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.5;
    appearance: none;
}

#xeezone-date,
#xeezone-time {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

#xeezone-date:focus,
#xeezone-time:focus,
#xeezone-name:focus,
#xeezone-email:focus,
#xeezone-whatsapp:focus {
    outline: none;
    border-color: #000;
}

/* Radio Group */
.xeezone-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.xeezone-radio-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: #87e64b;
    border: 2px solid #000;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.xeezone-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.xeezone-radio-option.selected {
    background: #000;
    border-color: #87e64b;
}

.xeezone-radio-icon {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: inherit;
}

.xeezone-radio-label {
    font-size: 0.9em;
    font-weight: 600;
    word-break: break-word;
    color: inherit;
}

.xeezone-radio-option.selected .xeezone-radio-icon,
.xeezone-radio-option.selected .xeezone-radio-label {
    color: #fff;
}

/* Submit Button */
.xeezone-submit-container {
    text-align: center;
    margin: 25px 0 15px;
}

.xeezone-submit-btn {
    background: #000;
    color: #87e64b;
    border: 2px solid #87e64b;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.xeezone-submit-btn:hover {
    background: #87e64b;
    color: #000;
    border-color: #000;
}

/* Response Message */
#xeezone-response-message {
    padding: 12px;
    margin: 15px 0;
    border-radius: 8px;
    display: none;
    word-break: break-word;
    text-align: center;
}

#xeezone-response-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#xeezone-response-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Powered By */
.xeezone-powered-by {
    text-align: center;
    padding: 10px;
    font-size: 10px;
    color: rgba(0,0,0,0.3);
    font-weight: 700;
    text-transform: uppercase;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .xeezone-meeting-widget {
        top: 50px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 95vw !important;
        border-radius: 8px;
    }

    .xeezone-radio-group {
        grid-template-columns: 1fr;
    }

    .xeezone-widget-scroll-container {
        max-height: 60vh;
        padding: 0 15px;
    }

    #xeezone-date,
    #xeezone-time {
        height: 56px;
    }
}









/* Add to xeezone-meeting.css */

.xeezone-price-display,
.xeezone-duration-display {
    font-weight: 600;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.xeezone-consent-checkbox {
    margin: 20px 0;
}

.xeezone-checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.xeezone-checkbox-option input[type="checkbox"] {
    margin-top: 3px;
}

.xeezone-checkbox-label {
    font-size: 0.9em;
    line-height: 1.4;
}








/* Payment Alert Styles */
.xeezone-payment-alert {
    margin: 15px 0;
    padding: 12px;
    background-color: #fff8e6;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.xeezone-alert-message {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #856404;
}

.xeezone-alert-message i {
    color: #ffc107;
    font-size: 1.2em;
}

.xeezone-alert-message span {
    font-size: 0.9em;
    line-height: 1.4;
}








/* Makes the link green on hover */
.xeezone-powered-by a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.xeezone-powered-by a:hover {
    color: #87e64b;
    text-decoration: underline;
    
}




































