html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}


html {
  position: relative;
  min-height: 100%;
}



.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}









.station-balloon {
    min-width: 280px;
    max-width: 340px;
    font-family: Arial, sans-serif;
}

.station-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.station-info {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fuel-list {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    margin: 10px 0;
}

.fuel-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

    .fuel-item.available {
        color: #198754;
        font-weight: 600;
    }

    .fuel-item.unavailable {
        color: #dc3545;
    }

.station-footer {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}












.comment-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comment-modal-content {
    width: 500px;
    max-width: 95vw;
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.comment-header {
    margin-bottom: 20px;
}

.station-address {
    color: #777;
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
}

.fuel-edit-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .fuel-edit-row label {
        width: 80px;
        font-weight: 600;
    }

    .fuel-edit-row input {
        flex: 1;
    }

.modal-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}



#mapContextMenu {
    position: fixed;
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    padding: 6px;
    z-index: 99999;
}