body {
    margin: 0;
    text-align: center;
}

td {
    font-family: Roboto, sans-serif;
    font-size: 10pt;
    background-color: #FFFFFF;
    margin-left: 0;
}

#maintable {
    margin: auto;
    width: 370px;
}

.header {
    background: linear-gradient(109.6deg, rgb(255, 194, 48) 11.2%, rgb(255, 124, 0) 100.2%);
    color: white;
    text-align: center;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 72px;
    box-sizing: border-box;
    margin: 0;
}

h2 {
    font-family: Roboto, sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 100px;
}

.input-field, .input-button {
    width: 370px;
    height: 52px;
    border-radius: 2px;
    box-sizing: border-box;
}

.input-field {
    padding: 0 16px;
    border: 1px solid rgba(204, 206, 206, 1);
    font-size: 16px;
    display: flex;
    align-items: center;
}

.input-field::placeholder {
    font-size: 15px; /* Smaller font size for placeholder */
    color: #777;
}

.input-button {
    background-color: #FB8C00;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-family: Roboto, sans-serif;
}

.error-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8d7da;
    border-left: 4px solid #f5c2c7;
    padding: 10px;
    color: #721c24;
    border-radius: 4px;
    position: relative;
}

.error-text {
    flex-grow: 1;
}

.close-btn {
    color: #721c24;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}

.close-btn:hover {
    color: #f5c2c7;
}