.container {
   padding: 30px;
    border-radius: 10px;
}

.contenedor{
    margin: 0 auto;
     background: #e7f8ffb5;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

h1 {
    text-align: center;
    color: #000000;
    margin-bottom: 30px;
    font-size: 2.5em;
   
}

.drop-zone {
    border: 3px dashed #fbc500;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.drop-zone:hover {
    background: #a9bbc3b5;
    border-color: rgba(255,255,255,0.5);
}

.drop-zone.dragover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
}

.settings {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.quality-slider {
    width: 100%;
    margin: 10px 0;
}

button {
    background: #2ecc71;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 100%;
    margin-top: 20px;
}

button:hover {
    transform: translateY(-2px);
}

#preview {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.progress-bar {
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    width: 0%;
    transition: width 0.3s ease;
}

@media (max-width: 767.98px) {
  .logo-container {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-content: center !important;
  }
}
