html,
body {
    margin: 0 !important;
    padding: 0 !important;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

body {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#map {
    position: fixed !important;

    top: 0;
    left: 0;

    width: 100vw !important;
    height: 100vh !important;

    z-index: 1;
}

#bottomMenu {

    position: fixed;

    left: 12px;
    right: 12px;
    bottom: 12px;

    background: rgba(255,255,255,0.98);

    border-radius: 24px 24px 18px 18px;

    padding: 16px;

    z-index: 9999;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.28);

    backdrop-filter: blur(6px);

    transform: translateY(130%);
    transition: transform 0.28s ease;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

#bottomMenu.show {
    transform: translateY(0);
}

#bottomMenu button {

    width: 100%;

    padding: 16px;

    border: 0;

    border-radius: 16px;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

#btnAddPivot {
    background: #2e7d5a;
    color: white;
}

#btnControlPivot {
    background: #4f7ea8;
    color: white;
}

#btnRefreshPivots {
    background: #5f9ea0;
    color: white;
}

#btnMyLocation {
    background: #607d8b;
    color: white;
}

#btnCancel {
    background: #8a8a8a;
    color: white;
}

#bottomMenu button:active {
    transform: scale(0.98);
}


#farmSheet {

    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    height: 320px;

    background: white;

    border-radius: 24px 24px 0 0;

    z-index: 9998;

    box-shadow:
        0 -4px 20px rgba(0,0,0,0.25);

    padding: 16px;

    overflow-y: auto;
}

#farmHandle {

    width: 60px;
    height: 6px;

    background: #cfcfcf;

    border-radius: 20px;

    margin: 0 auto 16px auto;
}

#farmSheet h3 {

    margin-top: 0;

    font-size: 22px;
}

#farmSearch {

    width: 100%;

    padding: 12px;

    border: 1px solid #ddd;

    border-radius: 14px;

    margin-bottom: 14px;

    font-size: 16px;

    box-sizing: border-box;
}

.farmItem {

    padding: 14px;

    border-radius: 16px;

    background: #f5f7f8;

    margin-bottom: 10px;

    cursor: pointer;

    transition: 0.2s;
}

.farmItem:active {

    transform: scale(0.98);
}

.farmTitle {

    font-size: 18px;
    font-weight: 600;
}

.farmInfo {

    color: #666;

    margin-top: 4px;

    font-size: 14px;
}
