table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Ensures columns fit mobile screen */
    margin-bottom: 15px;
}
caption {
    font-weight: bold;
    margin-bottom: 5px;
}
th, td {
    padding: 5px;
    border: 1px solid #000;
    word-wrap: break-word; /* Wrap long text */
}
input {
    width: 100%; /* Fill table cell */
    box-sizing: border-box; /* Avoid overflow */
}