
.camino-app{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:24px;
    max-width:1500px;
    margin:30px auto;
    font-family:Arial,sans-serif;
}

.camino-sidebar{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.camino-sidebar h2{
    margin:0;
    font-size:34px;
}

.camino-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.camino-card h3{
    margin-top:0;
}

.camino-card input{
    width:100%;
    padding:12px;
    border-radius:12px;
    border:1px solid #d1d5db;
    margin-bottom:14px;
}

.camino-card button{
    width:100%;
    background:#16a34a;
    color:white;
    border:none;
    padding:14px;
    border-radius:14px;
    font-weight:bold;
    cursor:pointer;
}

.stats-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
}

.green{
    color:#16a34a;
}

.red{
    color:#dc2626;
}

.progress{
    height:22px;
    background:#e5e7eb;
    border-radius:20px;
    overflow:hidden;
    margin-top:18px;
}

.progress-fill{
    height:100%;
    background:#16a34a;
}

.camino-map-wrapper{
    position:relative;
}

#camino-map{
    height:900px;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.legend{
    position:absolute;
    z-index:1000;
    top:20px;
    left:20px;
    background:white;
    padding:18px;
    border-radius:18px;
    box-shadow:0 4px 20px rgba(0,0,0,0.1);
}

.legend div{
    margin-bottom:10px;
}

.legend-red,
.legend-green{
    display:inline-block;
    width:30px;
    height:4px;
    margin-right:10px;
    vertical-align:middle;
    border-radius:10px;
}

.legend-red{
    background:#dc2626;
}

.legend-green{
    background:#16a34a;
}

.remaining-box{
    position:absolute;
    right:20px;
    bottom:20px;
    background:white;
    padding:28px;
    border-radius:24px;
    z-index:1000;
    text-align:center;
    box-shadow:0 4px 20px rgba(0,0,0,0.1);
}

.remaining-number{
    font-size:42px;
    color:#dc2626;
    font-weight:bold;
}

.entry{
    background:#f8fafc;
    padding:14px;
    border-radius:18px;
    margin-bottom:12px;
}

.entry-buttons{
    display:flex;
    gap:10px;
}

.edit-btn{
    background:#16a34a !important;
}

.delete-btn{
    background:#dc2626 !important;
}

@media(max-width:1000px){

    .camino-app{
        grid-template-columns:1fr;
    }

    #camino-map{
        height:600px;
    }
}


.entry input[name="camino_km"]{
    color:#16a34a;
    font-weight:bold;
}


.current-location{
    font-size:24px;
    color:#16a34a;
    font-weight:bold;
    line-height:1.6;
}
