﻿/* Contenedor principal */
.file-upload-container {
    text-align: center;
    background-color: #f9f9fc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: auto;
    font-family: Arial, sans-serif;
}

/* Información del archivo */
.file-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

/* Ícono del archivo */
.file-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Nombre del archivo */
.file-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* Botón de eliminar archivo */
.file-remove {
    color: #e63946;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    text-decoration: none;
}

    .file-remove:hover {
        text-decoration: none;
    }

/* Botón reemplazar archivo */
.file-actions {
    margin-top: 15px;
}

.replace-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

    .replace-button:hover {
        background-color: #0056b3;
    }

/* Detalles del archivo */
.file-details {
    font-size: 12px;
    color: #6c757d;
    margin-top: 10px;
    display: block;
}

    .file-details strong {
        color: #333;
    }
