body {
    font-family: sans-serif;
    background-color: #eeeeee;
 }

 @media (max-width: 400px) {
  .file-upload {
   width: 100%;
  }
 }

 .file-upload {
    background-color: #ffffff;
    width: 400px;
    margin: 0 auto;
    padding: 10px;
 }
 
 
 
 .file-upload-btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    color: #fff;
    background: #31708f;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #245269;
    transition: all .2s ease;
    outline: none;
    /*text-transform: uppercase;*/
    font-weight: 700;
  }
  
 
 .file-upload-btn:hover {
    background: #245269;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
 }
 
 .file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
 }
 
 .file-upload-content {
    display: none;
    text-align: center;
    margin-top: 10px; /* Añade espacio por encima */
    margin-bottom: 10px; /* Añade espacio por debajo */
 }
 
 .file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
 }
 
 .image-upload-wrap {
    margin-top: 20px;
    border: 4px dashed #31708f;
    position: relative;
 }
 
 .image-dropping,
 .image-upload-wrap:hover {
    background-color: #9eb4bf;
    border: 4px dashed #ffffff;
 }
 
 .image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
 }
 
 .drag-text {
    text-align: center;
 }
 
 .drag-text h3 {
    font-weight: 100;
    /*text-transform: uppercase;*/
    color: #245269;
    padding: 60px 0;
 }
 
 .file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
 }
 
 .remove-image {
    width: 80%;
    margin: 0;
    color: #245269; /* Cambia el color del texto a rojo */
    /*background: white;  Cambia el color de fondo a blanco */
    border: 2px #245269; /* Cambia el color del borde a rojo */
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px #245269; /* Cambia el color del borde inferior a rojo */
    transition: all .2s ease;
    outline: none;
    font-weight: 400;
 }
 
 .remove-image:hover {
    background: red; /* Cambia el color de fondo a rojo al pasar el mouse */
    color: white; /* Cambia el color del texto a blanco al pasar el mouse */
    transition: all .2s ease;
    cursor: pointer;
 }
 
 .remove-image:active {
    border: 0;
    transition: all .2s ease;
 }