/* assets/style.css (actualizado) */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drop-zone {
	padding: 0;
	margin: 0;
    min-width: 90%;
    min-height: 90%;
	min-width: 50%;
    min-height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #6c5ce7;
    border-radius: 10px;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.drop-zone.drag-over {
    background-color: #e6e6fa;
}

.main-container {
    background: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /*width: 45%;
    max-width: 50%;*/
    text-align: center;
}

.login-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

h1 {
    color: #6c5ce7;
    margin-bottom: 1.5rem;
}

.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 0.75rem;
    background-color: #6c5ce7;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #5a4fcf;
}

.message {
    margin-top: 1rem;
    color: #ff7675;
}

.file-label {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.75rem;
    background-color: #6c5ce7;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.file-label:hover {
    background-color: #5a4fcf;
}

#uploadProgress {
    margin-top: 1rem;
    color: #6c5ce7;
}

#fileList table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

#fileList th, #fileList td {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

#fileList th {
    background-color: #6c5ce7;
    color: white;
}

.logout-button {
    display: inline-block;
    margin-top: 1rem;
    color: #6c5ce7;
    text-decoration: none;
}

.logout-button:hover {
    text-decoration: underline;
}

/* assets/style.css (actualizado para la lista de archivos) */
#fileList {
    margin-top: 2rem;
}

#fileList h2 {
    color: #6c5ce7;
    margin-bottom: 1rem;
}

#uploadedFilesList {
    list-style-type: none;
    padding: 0;
}

#uploadedFilesList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    background-color: #f9f9f9;
}

#uploadedFilesList li button {
    background-color: #ff7675;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0px 1px;
    cursor: pointer;
	width: 60px;
	height: 20px;
}

#uploadedFilesList li button:hover {
    background-color: #e74c3c;
}