body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #ffffff;
}

header {
    text-align: center;
}

.logo {
    max-width: 200px;
}

main {
    max-width: 500px;
    margin: auto;
}

h1 {
    text-align: center;
    line-height: 1.4;
}

input[type="text"], 
input[type="tel"], 
input[type="email"] {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box;
}

/* Botón de selección de archivo */
.file-button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    text-align: center;
    border: 2px solid #C60C30;
    background-color: white;
    color: #C60C30;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.file-button:hover {
    background-color: #f8f8f8;
}

.file-button.loaded {
    background-color: #C60C30;
    color: white;
}

/* Nombre del archivo */
#fileName {
    text-align: center;
    color: #C60C30;
    font-weight: bold;
    min-height: 20px;
    margin: 10px 0;
}

/* Botón de envío */
button#sendBtn {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    background-color: #1E1E1E;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

button#sendBtn:hover {
    background-color: #333;
}

button#sendBtn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

button#sendBtn.sent {
    background-color: #28a745;
}

/* Mensaje final */
#finalMsg {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
}