

/*textbox*/
  
/* Table styling */
.form-table {
    width: 100%;
    border-collapse: collapse;
}

.form-table td {
    padding: 0;
    position: relative; /* Needed for absolute positioning */
    height: 10px; /* Adjust based on your needs */
}

/* Label that overlaps the textbox border */
.overlap-label {
    position: absolute;
    top: 0;
    left: 15px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    background-color: white;
    padding: 0 8px;
    z-index: 2; /* Ensure label appears above the textbox */
    transform: translateY(-50%);
    width: auto;
}

/* Textbox styling with overlapping label */
.overlap-textbox {
    width: 100%;
    padding: 5px 12px 10px;
    font-size: 1.5rem;
    border: 1px solid #999999;
    border-radius: 0px;
    background-color: #ffffff;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
            top: 0px;
            left: 0px;
        }

.overlap-textbox:focus {
    border-color: black;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* For multi-line textboxes */
.overlap-textarea {
    min-height: 100px;
    padding-top: 20px; /* More space for the label */
    resize: vertical;
}

/*textbox*/
