html,
body {
    height: 100%;
}

.text_box {
    padding: 30px;
    width: 50%;
    height: 100%;
    border: 1px solid lightgray;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: column; /* Added for better alignment of multiple spans */
}

#container{
    width: 100%;
    height: 70%; /* Adjusted for new drop area */
    background-color: white;
    display: flex;
    margin: 0 auto;
    box-sizing: border-box; /* Ensures padding/border don't add to overall size */
}

.center_buttons{
    margin:auto;
    display:block;
}

/* Styles for the new Drag & Drop area */
.drop-area {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: 20px auto;
    width: 80%; /* Adjust as needed */
    max-width: 600px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.drop-area.highlight {
    background-color: #e0e0e0;
    border-color: #007bff;
}

.drop-area p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.drop-area .btn {
    margin-top: 10px;
}

.file-name-display {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}