/* Box layout for the form */
.form-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px; /* Stick to top when scrolling */
}

/* Sticky table header */
.table-container {
    max-height: 450px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

thead {
    position: sticky;
    top: 0;
    background: #198754;
    color: white;
    z-index: 2;
}

.form-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
