  .button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }

  .top-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }

  .copy-btn, .map-btn {
    background-color: #7a7a7a;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border: 2px solid #333;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    transition: background-color 0.2s, font-size 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  /*Fargebytte når man holder mus over knapp*/
  .copy-btn:hover, .map-btn:hover {
    background-color: #8f8f8f;
  }
