
.cp_flatpickr.flatpickr-input.active{
  height: auto !important;
}

/* ========================================
   Submit Confirmation Dialog
   Colours and button treatment follow .submit-button in admin/css/custom.css.
   Fonts are inherited so the dialog picks up the active theme's typeface.
   ======================================== */
.clubband-confirm {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.clubband-confirm-open {
  opacity: 1;
  visibility: visible;
}

.clubband-confirm-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.clubband-confirm-dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-sizing: border-box;
  padding: 30px 26px 26px;
  background: #fff;
  color: #0d0d0d;
  border: 1px solid #0d0d0d;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(12px);
  transition: transform 0.3s ease;
}

.clubband-confirm-open .clubband-confirm-dialog {
  transform: translateY(0);
}

.clubband-confirm-close {
  position: absolute;
  top: 6px;
  right: 8px;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 1;
  background: none;
  border: none;
  border-radius: 0;
  color: #0d0d0d;
  font-size: 26px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.clubband-confirm-close:hover {
  opacity: 0.6;
}

.clubband-confirm-title {
  margin: 0 0 10px;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #0d0d0d;
}

.clubband-confirm-lead {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #0d0d0d;
}

.clubband-confirm-note {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: bold;
  color: #0d0d0d;
}

.clubband-confirm-link {
  color: #0d0d0d;
  font-weight: bold;
  text-decoration: underline;
  overflow-wrap: break-word;
  word-break: break-word;
}

.clubband-confirm-link:hover,
.clubband-confirm-link:focus {
  color: #0d0d0d;
  opacity: 0.7;
}

.clubband-confirm-actions {
  display: flex;
  gap: 10px;
}

.clubband-confirm-actions button {
  flex: 1 1 0;
  min-width: 0;
  padding: 15px 10px;
  border-radius: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.clubband-confirm-cancel {
  background-color: #fff;
  color: #0d0d0d;
  border: 1px solid #0d0d0d;
}

.clubband-confirm-cancel:hover {
  background-color: #0d0d0d;
  color: #fff;
}

.clubband-confirm-submit {
  background-color: #0d0d0d;
  color: #fff;
  border: 1px solid #0d0d0d;
}

.clubband-confirm-submit:hover {
  background-color: #fff;
  color: #0d0d0d;
}

@media (max-width: 420px) {
  .clubband-confirm-dialog {
    max-width: 92vw;
    padding: 24px 18px 20px;
  }

  .clubband-confirm-actions {
    flex-direction: column;
  }
}