.heb-trigger-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-family: 'Comfortaa', sans-serif;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.2s;
}
.heb-trigger-btn:hover {
    opacity: 0.9;
}

/* Modal */
.heb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.heb-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.heb-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.heb-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
}

.heb-field {
    margin-bottom: 15px;
}

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

.heb-field input,
.heb-field select,
.heb-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.heb-field-row {
    display: flex;
    gap: 15px;
}
.heb-field.half {
    flex: 1;
}

.heb-submit {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-family: 'Comfortaa', sans-serif;
    cursor: pointer;
    font-size: 16px;
}
