/* ========================================
   Section Remove Feature - CSS Styles
   Red cross icon for removing form sections
   ======================================== */

.form-section-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.section-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.section-delete-btn:hover {
    background-color: #c82333;
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.5);
}

.section-delete-btn:active {
    transform: scale(0.95);
}

/* Ensure the title text doesn't get pushed around */
.form-section-title > *:first-child:not(.section-delete-btn) {
    flex: 1;
}
