/**
 * FBM Premium Profile - Frontend Styles
 */

.fbm-profile-container,
.fbm-settings-container,
.fbm-groups-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.fbm-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.fbm-profile-avatar img {
    border-radius: 50%;
}

.fbm-profile-name h2 {
    margin: 0 0 5px 0;
}

.fbm-profile-email {
    color: #666;
    margin: 0;
}

.fbm-profile-fields,
.fbm-settings-fields {
    margin-bottom: 30px;
}

.fbm-profile-field,
.fbm-settings-field {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.fbm-profile-field:last-child,
.fbm-settings-field:last-child {
    border-bottom: none;
}

.fbm-profile-field-label,
.fbm-settings-field-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.fbm-profile-field-value {
    color: #333;
}

.fbm-settings-field-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.fbm-settings-field-input:focus {
    outline: none;
    border-color: #0073aa;
}

.fbm-settings-field-readonly {
    padding: 8px 12px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
}

.fbm-readonly-note {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.fbm-required {
    color: #d63638;
}

.fbm-empty-value {
    color: #999;
    font-style: italic;
}

.fbm-profile-actions,
.fbm-settings-actions {
    display: flex;
    gap: 10px;
}

.fbm-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: background-color 0.2s;
}

.fbm-btn-primary {
    background-color: #0073aa;
    color: #fff;
}

.fbm-btn-primary:hover {
    background-color: #005a87;
    color: #fff;
}

.fbm-btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.fbm-btn-secondary:hover {
    background-color: #e0e0e0;
    color: #333;
}

.fbm-message {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.fbm-message-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.fbm-message-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.fbm-profile-message {
    padding: 20px;
    text-align: center;
}

.fbm-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.fbm-groups-list {
    display: grid;
    gap: 20px;
}

.fbm-group-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fbm-group-item h3 {
    margin: 0 0 10px 0;
}

.fbm-group-meta {
    margin: 0;
    color: #666;
}

.fbm-group-visibility {
    display: inline-block;
    padding: 4px 8px;
    background: #f0f0f0;
    border-radius: 3px;
    font-size: 12px;
}

