.nelx-google-meet-settings {
    max-width: 600px;
    margin: 20px 0;
    padding: 20px;
}

.nelx-field {
    margin-bottom: 20px;
}

.nelx-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.nelx-field input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.nelx-field .description {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
}

.nelx-actions {
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Inherit theme button styles */
.nelx-primary {
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #0073aa;
    color: white !important;
}

.nelx-primary:hover {
    background-color: #005a87;
}

.nelx-btn.nelx-danger {
    background: var(--btn-danger-bg, #dc3232);
    color: var(--btn-danger-color, #fff);
}

.nelx-btn.nelx-danger:hover {
    background: var(--btn-danger-hover-bg, #c32222);
}

.nelx-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.nelx-status {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
}

.nelx-status.nelx-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.nelx-status.nelx-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.nelx-message {
    padding: 12px 15px;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.4;
}

.nelx-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.nelx-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.nelx-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.nelx-notice {
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    color: #495057;
}

/* Responsive design */
@media (max-width: 768px) {
    .nelx-google-meet-settings {
        margin: 10px;
        padding: 15px;
    }
    
    .nelx-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .nelx-btn {
        text-align: center;
    }
    
    .nelx-status {
        text-align: center;
    }
}