/* Estilos específicos para la página de descargas */

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 300px;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.btn-download img {
    width: 30px;
    margin-right: 10px;
}

/* Estilos específicos para cada botón */
.windows {
    background: linear-gradient(45deg, #0078D7, #0053A5);
    box-shadow: 0px 0px 10px #0078D7;
}

.windows:hover {
    box-shadow: 0px 0px 15px #00A5FF;
}

.server {
    background: linear-gradient(45deg, #28A745, #1D7A31);
    box-shadow: 0px 0px 10px #28A745;
}

.server:hover {
    box-shadow: 0px 0px 15px #32D957;
}
