* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* border: #000000 solid; */
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.3;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* .containerfirst {
	border: black solid;
	max-width: 1000px


	
}
h4 {
    text-align: center;
    margin-bottom: 1%;
    margin-top: 1px;
    color: #06020b;
	font:alphabetic;
}

.description1 {
    
    margin-bottom: 10px;
    color: #666;
	text-justify: auto;
	  
} */

.container {
/* 	border: blue solid; */
    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: 0px;
    padding-bottom: 12px;
    padding-top: 12px;
    margin-top: 70px;
}
.containertwo {
/* 	border: black solid; */
    max-width: 1250px;
    margin: 0 auto;
/*     background: linear-gradient(135deg, #ecf0f7 0%, #bdcade 100%); */
    padding: 0px;
/* 	background-color: #333; */
    border-radius: 10px;
/*     box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    margin-top: 10px;
    padding-bottom: 0px;
    padding-top: 12px;
    margin-top: 40px;
}
/* .containerfirst {
	border: black solid;
	max-width: 1000px
		


	
} */

h3 {
    text-align: center;
    margin-bottom: 1%;
    margin-top: 1px;
    color: #06020b;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.description {
    
    margin-bottom: 10px;
    color: #666;
	text-align: center;
	text-justify: auto;
	  
}

.upload-container {
/* 	border:blue solid; */
/* 	margin:20px; */
	padding:10px;
	background-color: white;
/*     margin-bottom: 5px; */
/*     margin-top: 5px; */
    
}

.upload-area {
    border: 2px dashed #a59d9d;
    border-radius: 8px;
    /* padding: 40px; */
    padding: 0px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: #000000;
    background-color: #9da3b775;
}

.upload-icon {
    font-size: 30px;
    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;
}

.controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.effect-control {
    flex: 1;
    min-width: 200px;
}

label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
}

input[type="range"] {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    background: #000000;
    border-radius: 4px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: rgb(0, 0, 0);
    border-radius: 50%;
    cursor: pointer;
}

.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:200px;
	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:170px;
	height:40px;
    margin:auto;
	text-align: center; 
    
}

.progress-container {
    width: 100%;
    height: 5px;
    background-color: #eee;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    display: none;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #6a11cb, #000000);
    transition: width 0.3s;
}

.status-message {
    text-align: center;
    margin-bottom: 5px;
    min-height: 14px;
    color: #6c5ce7;
    font-weight: 500;
}

.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;
}

/* BADGE */

.format-badge {
    padding: 5px 15px;
    /* background-color: #6c5ce7; */
    color: rgb(7, 6, 6);
    border-radius: 20px;
    font-size: 14px;
}


/* FOOTER */
footer {
    text-align: center;
    margin-top: 30px;
    color: #777;
    font-size: 14px;
}


/* EDIT ANOTHER FILE */
.editanotherfile {
/* 	border:black solid; */
	background-color:#6c5ce7;
    color: white;
	border-radius: 5px;
	margin:auto;
	text-align: center; 
	text-align:center;
	width:200px;
	height:35px;
	margin-top:10px;
    padding-top: 5px;
	
}
a{
    text-decoration: none;
      padding:0;
      
   
  }
