.ensy-form {
    max-width: 700px;
}

.ensy-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.ensy-col {
    flex: 1;
}

.ensy-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.ensy-input,
.ensy-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    background: transparent;
    padding: 8px 0;
}

.ensy-textarea {
    min-height: 120px;
    resize: vertical;
}

.ensy-submit {
    margin-top: 20px;
}

.ensy-error {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 5px;
}

.ensy-input:focus {
    outline: none;
    border-bottom: 1px solid #58a6ff;
}


.ensy-entry-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.ensy-label {
    font-weight: 600;
    color: #9da7b3;
    font-size: 12px;
    margin-bottom: 2px;
}

.ensy-value {
    font-size: 14px;
    color: #e6edf3;
    background: #161b22;
    padding: 6px 8px;
    border-radius: 6px;
    word-break: break-word;
}


.ensy-preview {
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
}

.ensy-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}