@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
.upload{
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}   

.container-up{
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}
    
.container {
  height: 300px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, .2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  gap: 5px;
  background-color: rgba(0, 110, 255, 0.041);
}

.header {
  flex: 1;
  width: 100%;
  border: 2px dashed royalblue;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header p {
  text-align: center;
  color: black;
}

.footer {
  background-color: rgba(0, 110, 255, 0.075);
  width: 100%;
  height: 40px;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: black;
  border: none;
}
 h2{
    font-family: "Quicksand", sans-serif;
    font-weight: 300;
    font-size: 32px;
    text-align: center;
}


.footer p {
  flex: 1;
  text-align: center;
}

#file {
  display: none;
}

.btn{
    width: 150px;
    height: 50px;
    border-radius: 50px;
    border: transparent;
    background: #b9947e;
    color: white;
}

.btn:hover{
    border: 2px #b9947e solid;
    background-color: transparent;
    color: #56585e;
}

#popup {
    display: none; /* Solo ocultar, no sobrescribir display:flex */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #b9947e;
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

#popup.show {
    display: flex; /* Mostrar y aplicar flex solo cuando esté visible */
    justify-content: center;
    align-items: center;
}

.btn-ver-comentarios {
    width: 150px;
    height: 50px;
    border-radius: 50px;
    border: transparent;
    background: #b9947e;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

a{
    text-decoration: none;
}


.btn-ver-comentarios:hover{
    border: 1px #b9947e solid;
    background-color: white;
    color: #56585e;
}