* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.3;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ecf0f7 0%, #bdcade 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    padding-bottom: 12px;
    padding-top: 12px;
    margin-top: 70px;
}

h3 {
    text-align: center;
    margin-bottom: 1%;
    margin-top: 1px;
    color: #06020b;
}

.description {
    text-align: center;
    margin-bottom: 10px;
    color: #666;
}

.upload-container {
    margin-bottom: 5px;
    margin-top: 5px;
}

.upload-area {
    border: 2px dashed #a59d9d;
    border-radius: 8px;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: #000000;
    background-color: #9da3b775;
}

.upload-icon {
    font-size: 35px;
    margin-bottom: 15px;
    color: #6a11cb;
}

.upload-text {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.upload-hint {
    color: #352b2bc1;
    font-size: 14px;
}

#fileInput {
    display: none;
}

.file-info {
    display: none;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 5px;
    align-items: center;
    background-color: #f9f9f9;
}

.file-icon {
    font-size: 25px;
    margin-right: 15px;
    color: #000000;
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.change-btn {
    background: none;
    border: 1px solid #000000;
    color: #000000;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.change-btn:hover {
    background-color:#6c5ce7;
    color: white;
}

.equalizer-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.eq-band {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eq-band label {
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 500;
}

.eq-slider {
    -webkit-appearance: slider-vertical;
    width: 30px;
    height: 100px;
    margin: 0 5px;
}

.eq-value {
    font-size: 12px;
    margin-top: 5px;
    color: #6c5ce7;
    font-weight: bold;
}

.btn {
    display: block;
    width: 100%;
    padding: 8px;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.btn-process {
    background: linear-gradient(to right, #6c5ce7, #6c5ce7);
    margin-top: 0px;
    width:170px;
    height:40px;
    margin:auto;
    text-align: center; 
    margin-bottom: 5px;
}

.btn-process:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-process:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-download {
    background: linear-gradient(to right, #00cec9, #00cec9);
    margin-top: 0px;
    width:210px;
    height:40px;
    margin:auto;
    text-align: center; 
}

.player-container {
    margin-top: 10px;
    text-align: center;
    display: none;
}

.player-container h5 {
    margin-bottom: 10px;
    color:#6c5ce7;
}

audio {
    width: 100%;
    margin-bottom: 5px;
}

.supported-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 0px;
}

.format-badge {
    padding: 5px 15px;
    color: rgb(7, 6, 6);
    border-radius: 20px;
    font-size: 14px;
}

.editanotherfile {
    background-color:#6c5ce7;
    color: white;
    border-radius: 5px;
    margin:auto;
    text-align: center; 
    text-align:center;
    width:150px;
    height:35px;
    margin-top:10px;
    padding-top: 5px;
    display: block;
}

a {
    text-decoration: none;
    padding:0;
}