/* Main Settings Wrapper */
.lbsg-settings-wrap {
    max-width: 1000px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Header Styles */
.lbsg-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.lbsg-header-content h1 {
    margin: 0;
    color: #1d2327;
    font-size: 28px;
    font-weight: 600;
}

.lbsg-subtitle {
    margin: 5px 0 0;
    color: #646970;
    font-size: 14px;
}

/* Settings Card */
.lbsg-settings-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

/* Form Elements */
.lbsg-field {
    margin-bottom: 20px;
}

.lbsg-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1d2327;
}

.lbsg-field input[type="text"],
.lbsg-field input[type="url"],
.lbsg-field input[type=tel],
.lbsg-field select {
    width: 100%;
    max-width: 500px;
    padding: 8px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 0 transparent;
    transition: border-color 0.15s ease-in-out;
}

.lbsg-field input[type="text"]:focus,
.lbsg-field input[type=tel],
.lbsg-field input[type="url"]:focus,
.lbsg-field select:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: 2px solid transparent;
}

/* Image Upload Field */
.lbsg-image-field .image-preview-wrapper {
    margin-bottom: 10px;
}

.lbsg-image-field .image-preview {
    max-width: 300px;
    max-height: 200px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.lbsg-image-field .image-preview-placeholder {
    width: 300px;
    height: 200px;
    background: #f5f5f5;
    border: 1px dashed #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.lbsg-image-field .image-upload-actions {
    display: flex;
    gap: 10px;
}

/* Section Description */
.lbsg-section-description {
    color: #646970;
    font-size: 14px;
    margin-bottom: 20px;
}

.lbsg-readonly {
     opacity: 0.6;
    cursor: not-allowed;
}
#lbsg_business_type {
    height: 40px;
}