.bdp-popup{position:fixed;top:0;left:0;right:0;bottom:0;display:none;
    justify-content:center;align-items:center;background:rgba(0,0,0,.6);z-index:9999;}
.bdp-popup.open{display:flex;}
.bdp-popup .box{background:#fff;padding:20px;border-radius:8px;max-width:400px;width:100%;}
.bdp-popup input{width:100%;margin:6px 0;padding:8px;border:1px solid #ccc;border-radius:4px;}
.bdp-popup button{display:block;width:100%;padding:10px;background:#ff6c3d;border:none;border-radius:6px;color:#fff;font-weight:700;cursor:pointer;}
.bdp-popup .success,.bdp-popup .error{display:none;text-align:center;margin-top:10px;}
input[type="language"] {
    display: none;
}

label.sprog {
    display: none;
}

input#bdp-lang {
    display: none;
}

/* 1) OVERLAY */
.bdp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 27, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  /* 2) SELVE MODAL-BOKSEN */
  .bdp-modal {
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  /* 3) LUK-KNAPPE (×) */
  .bdp-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #555555;
    cursor: pointer;
  }
  .bdp-modal-close:hover {
    color: #000000;
  }
  
  /* 4) BILLEDE ØVERST */
  .bdp-modal-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
  }
  .bdp-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* 5) INDHOLD (TEKST + FORM) */
  .bdp-modal-content {
    padding: 20px;
    text-align: center;
  }
  .bdp-modal-content h2 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #1b1b1b;
  }
  .bdp-modal-subtitle {
    font-size: 14px;
    color: #555555;
    margin: 0 0 20px;
  }
  
  /* 6) FORM-GRUPPER (LABEL + INPUT) */
  .bdp-form-group {
    margin-bottom: 16px;
    text-align: left;
  }
  .bdp-form-group label {
   
    margin-bottom: 6px;
    font-size: 14px;
    color: #333333;
  }
  .bdp-form-group input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    box-sizing: border-box;
  }
  .bdp-form-group input:focus {
    outline: none;
    border-color: #ff6c3d;
    box-shadow: 0 0 0 2px rgba(255, 108, 61, 0.2);
  }
  
  /* 7) SUBMIT-KNAP */
  .bdp-submit-button {
    width: 100%;
    padding: 12px 0;
    background-color: #ff6c3d;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
  }
  .bdp-submit-button:hover {
    background-color: #e55b2b;
  }
  
  /* 8) SUCCESS / ERROR BESKEDER */
  .bdp-success-message,
  .bdp-error-message {
    margin-top: 14px;
    font-size: 14px;
  }
  .bdp-success-message {
    color: #1f9e3a;
  }
  .bdp-error-message {
    color: #b82334;
  }
  
  /* 9) RESPONSIVT (MOBIL) */
  @media (max-width: 480px) {
    .bdp-modal {
      max-width: 90%;
    }
    .bdp-modal-image-container {
      height: 140px;
    }
    .bdp-modal-content h2 {
      font-size: 20px;
    }
    .bdp-form-group input,
    .bdp-submit-button {
      font-size: 14px;
    }
  }
  