/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10000;
    display: none; /* Hidden by default, shown by JS */
    font-family: 'Inter', sans-serif;
    border-top: 4px solid var(--primary-color, #2c5e2e);
}

#cookie-banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

@media (min-width: 768px) {
    #cookie-banner .container {
        flex-direction: row;
        text-align: left;
    }
}

#cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

#cookie-banner a {
    color: var(--primary-color, #2c5e2e);
    text-decoration: underline;
}

#cookie-banner .buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-banner .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    font-size: 0.9rem;
    white-space: nowrap;
}

#cookie-banner .btn-accept {
    background-color: var(--primary-color, #2c5e2e);
    color: white;
}

#cookie-banner .btn-accept:hover {
    background-color: #1e4220;
}

#cookie-banner .btn-decline {
    background-color: #f0f0f0;
    color: #333;
}

#cookie-banner .btn-decline:hover {
    background-color: #e0e0e0;
}

/* Map Placeholder */
.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #555;
    border: 1px solid #ddd;
}

.map-placeholder h3 {
    margin-bottom: 10px;
    color: var(--primary-color, #2c5e2e);
}

.map-placeholder p {
    max-width: 400px;
    margin-bottom: 20px;
}

.map-placeholder .btn-load-map {
    background-color: var(--primary-color, #2c5e2e);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}


