* {
    box-sizing: border-box;
}
body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 20px;
    background: #0d300d;
    color: #f8f8f8;
    min-height: 100vh;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
h1 {
    margin: 0 0 10px 0;
    font-weight: 300;
}
.description {
    color: #b7dfbc;
    margin-bottom: 20px;
    line-height: 1.5;
}
.map-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #03492d;
}
#map {
    width: 100%;
    height: 600px;
}
.pick-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1000;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 6px;
    background: #386330;
    color: #f8f8f8;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: background 0.2s;
}
.pick-btn:hover {
    background: #4a7a40;
}
.pick-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}
.clear-btn {
    position: absolute;
    top: 60px;
    right: 12px;
    z-index: 1000;
    padding: 8px 14px;
    font-size: 13px;
    font-family: inherit;
    border: none;
    border-radius: 6px;
    background: rgba(56, 99, 48, 0.85);
    color: #b7dfbc;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: background 0.2s;
}
.clear-btn:hover {
    background: #4a7a40;
    color: #f8f8f8;
}
#loading {
    color: #7a9f82;
    font-style: italic;
    margin-bottom: 10px;
}
.info-box {
    margin-top: 15px;
    padding: 15px;
    background: #386330;
    border-radius: 8px;
    font-size: 14px;
    color: #b7dfbc;
    line-height: 1.6;
}
.info-box strong {
    color: #f8f8f8;
}
.home-link {
    margin: 2rem 0;
}
.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    border-radius: 4px;
    border: 1px solid #00d0cb;
    background: transparent;
    color: #00d0cb;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-home:hover {
    background: #00d0cb;
    color: #0d300d;
}
