.clickup-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: none !important;
  align-items: center;
  justify-content: center;
}

#wpadminbar #wp-admin-bar-standfirst-help > .ab-item {
  background-color: white !important;
  color: red !important;
}

#wpadminbar #wp-admin-bar-standfirst-help > .ab-item:link,
#wpadminbar #wp-admin-bar-standfirst-help > .ab-item:visited {
  color: red !important;
}

#wpadminbar #wp-admin-bar-standfirst-help:hover > .ab-item,
#wpadminbar #wp-admin-bar-standfirst-help.hover > .ab-item {
  background-color: red !important;
  color: white !important;
}

#wpadminbar #wp-admin-bar-standfirst-help > .ab-item:active,
#wpadminbar #wp-admin-bar-standfirst-help > .ab-item:hover {
  background-color: red !important;
  color: white !important;
}

.clickup-modal.active {
  display: flex !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: #fff;
  border-radius: 8px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  max-height: 90vh;
  min-width: 40%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.modal-content::-webkit-scrollbar {
  display: none;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2c3338;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #cf2e2e;
    transform: scale(1.1);
}

.modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.5);
} 