body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f0f0f0;
}

h2 {
    color: #333;
    text-align: center;
}

.cuadro-gimnasio {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 1000px;
}

.imagen-gimnasio {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.info-gimnasio {
    flex: 1;
}

.info-gimnasio h3 {
    margin-top: 0;
    color: #000;
}

.info-gimnasio p {
    margin: 5px 0;
    color: #666;
}

.boton-fotos {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    background-color: #000000;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.boton-fotos:hover {
    background-color: #0056b3;
}
