.fm-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.fm-navigation {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
}

.fm-tab {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.fm-tab:hover {
    background: #005177;
}

.fm-section {
    display: none;
}

.fm-section.active {
    display: block;
}

#fm-map {
    width: 100vw!important;
    height: 100vh !important;
    margin-top: 20px;
    border: 1px solid #ddd;
}

#fm-form-section {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
}

.fm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
}

.fm-overlay.active {
    display: block;
}

.fm-form-group {
    margin-bottom: 1rem;
}

.fm-form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.fm-form-group input {
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
}

.fm-error {
    color: #dc3232;
    margin-top: 0.5rem;
}
