/* FormLayer Gutenberg Block Editor CSS */
.formlayer-block-editor-preview {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 24px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
display: flex;
flex-direction: column;
gap: 12px;
max-width: 600px;
margin: 20px auto;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.formlayer-block-editor-header {
display: flex;
align-items: center;
gap: 10px;
border-bottom: 1px solid #f1f5f9;
padding-bottom: 12px;
margin-bottom: 12px;
}

.formlayer-block-editor-header .dashicons {
color: #3b82f6;
font-size: 20px;
width: 20px;
height: 20px;
}

.formlayer-block-editor-header h4 {
margin: 0;
font-size: 15px;
font-weight: 700;
color: #1e293b;
}

.formlayer-block-editor-info {
margin: 0;
font-size: 13px;
color: #64748b;
line-height: 1.5;
}

/* Branded Placeholder matching SocialFeeds selection card */
.formlayer-block-editor-placeholder {
background: #ffffff;
border: 1px solid #cbd5e1;
border-radius: 4px;
padding: 24px;
text-align: left;
max-width: 600px;
margin: 20px auto;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
box-sizing: border-box;
}

.formlayer-block-placeholder-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
}

.formlayer-block-placeholder-header .dashicons {
color: #1e293b;
font-size: 20px;
width: 20px;
height: 20px;
}

.formlayer-block-placeholder-header h4 {
margin: 0;
font-size: 15px;
font-weight: 700;
color: #1e293b;
}

.formlayer-block-placeholder-description {
margin: 0 0 16px 0 !important;
color: #334155 !important;
font-size: 13px !important;
font-weight: 400 !important;
}

.formlayer-block-buttons-container {
display: flex;
flex-direction: column;
gap: 10px;
width: 100%;
}

/* Premium outline selection buttons */
.formlayer-block-selection-button {
width: 100%;
padding: 10px 16px;
background: #ffffff;
border: 1.5px solid #3b82f6;
color: #2563eb;
font-size: 14px;
font-weight: 600;
border-radius: 4px;
cursor: pointer;
text-align: center;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
outline: none;
box-sizing: border-box;
}

.formlayer-block-selection-button:hover {
background: #eff6ff;
border-color: #2563eb;
color: #1d4ed8;
}

.formlayer-block-editor-preview-live {
border: 1px solid #e2e8f0;
border-radius: 8px;
background: #ffffff;
padding: 24px;
margin: 16px 0;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}