body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

#file {
    display: block;
}

label {
    display: block;
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

label:hover {
    background-color: #2980b9;
}

#uploadButton {
    display: block;
}

.progress-bar {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 20px;
    height: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0;
    background-color: #4caf50;
    text-align: center;
    line-height: 20px;
    color: white;
}


/* Agregar un estilo de línea punteada al dropArea */
.drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

/* Cambiar el color cuando se arrastra el archivo sobre dropArea */
.drop-area.active {
    background-color: #f2f2f2;
    border-color: #999;
}

.thumb {
    width: 100px;
    height: 100px;
    display: inline-block;
    cursor: pointer;
    margin: 5px;
    background-size: cover;
    background-position: center;
}

.textContainer {
    max-width: 700px!important;
    left: 460px;
    position: absolute;
}