/* General */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f9fafb;
}

/* Header */
.main-header{
    background-color: #7CB955;
    color: #153D65;
    font-weight: bold;
    font-size: 30px;
    height: 80px;
}

.navbar{
    width: 1200px;
    margin: auto;
}

.navbar-item{
    width: 300px;
    float: left;
}

.navbar-item a{
    color: #153D65;
    text-decoration: none;
    font-weight: bold;
    height: 80px;
    line-height: 80px;
    text-align: center;
    -webkit-transition: 0.5s;
    -moz-transition:  0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.navbar-item a:hover {
    color: #D4DB54;
    -webkit-transition: 0.5s;
    -moz-transition:  0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.logout-form button {
    background-color: #7CB955;
    color: #153D65;
    font-weight: bold;
    font-size: 30px;
    text-decoration: none;
    width: 300px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -moz-transition:  0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.logout-form button:hover {
    color: #D4DB54;
    -webkit-transition: 0.5s;
    -moz-transition:  0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

/* Contenedor general */
.container {
    padding: 20px;
}

main{
    width: 1200px;
    margin: auto;
}

main h2{
    width: 100%;
    text-align: center;
    color: #153D65;
    font-weight: bold;
    font-size: 30px;
}

/* Listado de productos (tarjetas) */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: #f3f4f6;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    width: 250px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.card p {
    margin: 0 0 10px;
    font-size: 14px;
}

.btn {
    display: inline-block;
    background: #3b82f6;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #2563eb;
}

/* Mapa */
#map {
    height: 800px;
    width: 100%;
    margin-top: 20px;
}


/* LOGIN */

.login-box {
    width: 300px;
    height: 270px;
    margin: auto;
    margin-top: 100px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.form-input {
    width: 277px;
    padding: 10px;
    margin: 10px 0;
}

.form-button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #7CB955;
    color: #153D65;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    -webkit-transition: 0.5s;
    -moz-transition:  0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.form-button:hover {
    background: #D4DB54;
    -webkit-transition: 0.5s;
    -moz-transition:  0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.error {
    color: red;
}

