.custom-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px !important;
  background: #f8f8f8;
  z-index: 9999;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
}

.custom-modal-content {
  position: relative;
  padding: 20px;
}

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

.tabs { display: flex; justify-content: space-around; list-style: none; padding: 0; margin: 10px 0; }
.tab-link { padding: 8px 15px; cursor: pointer; border-radius: 6px; border: 1px solid #ccc; }
.tab-link.active { background-color: #333; color: #fff; }

.tab-content { display: none; margin: 10px 0; }
.tab-content.active { display: block; }

.buttons-container { text-align: center; margin-top: 15px; }
.buttons-container button { padding: 10px 20px; margin: 5px; border-radius: 6px; border: none; cursor: pointer; font-weight: bold; }
#allowAll { background: #4CAF50; color: #fff; }
#rejectAll { background: #f44336; color: #fff; }
#settingsBtn { background: #2196F3; color: #fff; }
