/* General */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 90%;
    margin: 20px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #ff6600;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #ff6600;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #444;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

button, input[type="submit"] {
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

    button:hover, input[type="submit"]:hover {
        background-color: #e65c00;
    }

.success {
    color: #28a745;
    font-weight: bold;
    margin-top: 10px;
}

.error {
    color: #dc3545;
    font-weight: bold;
    margin-top: 10px;
}

/* Tabla */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .table th, .table td {
        text-align: center;
        padding: 8px;
        border: 1px solid #ddd;
    }

    .table th {
        background-color: #ff6600;
        color: white;
        text-align: center;
    }

    .table tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .table tr:hover {
        background-color: #ddd;
    }

    .table td {
        text-align: center;
    }

    .table a {
        text-decoration: none;
        color: #ff6600;
        font-weight: bold;
    }

        .table a:hover {
            color: #cc5500;
        }

.btn-descargar {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-descargar:hover {
        background-color: #cc5500;
    }

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

/* Responsividad */
@media (max-width: 768px) {
    .container {
        max-width: 95%;
        padding: 20px;
        margin: 10px auto;
    }

    h2 {
        font-size: 20px;
    }

    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

        .table th, .table td {
            font-size: 14px;
            padding: 6px;
        }

        .table th {
            text-align: left;
        }
}
