        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .container {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 1200px;
            text-align: center;
        }
        input, button {
            padding: 10px;
            margin: 5px;
            width: 90%;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button {
            background-color: #007BFF;
            color: white;
            cursor: pointer;
            
            
            
        }
        button:hover {
            background-color: #0056b3;
        }
        .table-container {
            width: 100%;
            overflow-x: auto;
            margin-top: 20px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        th, td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: left;
        }
        th {
            background-color: #007BFF;
            color: white;
        }
        .download img {
            width: 40px;
            height: 40px;
        }
        
.botones {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-regresar {
    padding: 4px;
    width: 80%;
    max-width: 200px;
    background-color: #FA5858;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    line-height: 3;
}

.btn-regresar:hover {
    background-color: #5a6268;
}
