.xlsx-upload-wrapper {
    max-width: 500px;
    margin: 2em auto;
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    padding: 2em;
    border-radius: 10px;
    text-align: center;
}

.xlsx-title {
    margin-bottom: 1.5em;
    font-size: 16px;
    color: #333;
}

.xlsx-upload-buttons {
    display: flex;
    justify-content: center;
    gap: 1em;
    align-items: center;
    margin-bottom: 1em;
}

#xlsx_file {
    display: none;
}

.xlsx-choose {
    background-color: #dcb189;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.xlsx-choose:hover {
    background-color: #c99a6f;
}

.xlsx-filename {
    font-style: italic;
    font-size: 14px;
    color: #444;
    margin-bottom: 1.5em;
}

.xlsx-submit {
    background-color: #dcb189 !important;
    color: white !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.xlsx-submit:hover {
    background-color: #c99a6f !important;
}
