* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Futura Std Bold, Futura Std Book, Futura Std Medium;
}


body {
    line-height: 1.6;
}

.navegador {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #066289;
    padding: 10px 20px;
    color: #FFFFFF;
}

.logo {
    margin-left: 20px;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu>li {
    position: relative;
}

.menu a {
    color: #060301;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    display: inline-block;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #C4C5C7;
    border-radius: 5px;
}

.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #060301;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.submenu li {
    width: 150px;
}

.submenu a {
    padding: 10px;
    color: white;
    display: block;
    font-size: 14px;
}

.submenu a:hover {
    background-color: #555;
}

.menu>li:hover .submenu {
    display: block;
}

@media (max-width: 768px) {
    .navegador {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin: 0 auto 10px auto;
    }

    .menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .menu>li {
        width: 100%;
        text-align: center;
    }

    .menu a {
        font-size: 18px;
        padding: 10px;
        width: 100%;
    }

    .submenu {
        position: static;
        box-shadow: none;
    }

    .menu>li:hover .submenu {
        display: block;
    }

    .submenu a {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .menu a {
        font-size: 14px;
        padding: 8px;
    }

    .logo img {
        height: 30px;
    }
}


.fondo-elche {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #006089;
}

.fondo-elche-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.fondo-elche-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comercio {
    display: flex;
    flex-direction: row;
}

.comercio1 {
    width: 70%;
    background-color: #7DACB8;
}

.comercio1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comercio2 {
    width: 30%;
    background-color: #7DACB8;
    padding: 5%;
}

@media (max-width: 768px) {
    .fondo-elche {
        height: 300px;
    }

    .comercio {
        flex-direction: column;
    }

    .comercio1 {
        width: 100%;
        height: 200px;
    }

    .comercio2 {
        width: 100%;
        padding: 10%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fondo-elche {
        height: 200px;
    }

    .comercio2 {
        padding: 5%;
    }

    .comercio2 h1 {
        font-size: 1.5rem;
    }

    .comercio2 p {
        font-size: 1rem;
    }
}


.footer {

    background-color: #060301;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.btn-primary {
    background-color: #066289;
    border-color: #066289;
    color: white;
}

.btn-primary:hover {
    background-color: black;
    border-color: #7DACB8;
}

#login {
    position: relative;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    padding: 50px;
    overflow: hidden;
}

#login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/elche.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}

#selector-buscador {
    margin-top: 20px;
    margin-bottom: 20px;
}

.version-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #066289;
}

.list-item-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.list-group {
    margin-top: 20px;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;

}

.tarjetas {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-right: 20px;

}

.card {
    display: flex;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    background-color: #7DACB8;
    width: 18rem;
}

.floating-edit-button {
    position: fixed;
    bottom: 16px;
    right: 16px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 1000;
}

.card {
    width: 18rem
;
}

.tarjetas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card-img-top {
    max-height: 200px;
    object-fit: cover;
}
