.lbd-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.lbd-modal-content {
  background: #fff;
  margin: 10% auto;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.lbd-close {
  position: absolute;
  right: 15px; top: 10px;
  cursor: pointer;
  font-size: 22px;
}

#lbd-form input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
}

#lbd-form button {
  width: 100%;
  background: #0073aa;
  color: #fff;
  padding: 10px;
  border: none;
}

/* Existing modal styles remain */
.lbd-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.lbd-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.lbd-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

#lbd-form input {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#lbd-form button {
    background: #007cba;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 15px;
    position: relative;
    transition: all 0.3s ease;
}

#lbd-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.lbd-loader {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: lbd-spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes lbd-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}