/* 1. Main Popup Container Styling */
.dx-confirmation-popup-ui.dx-overlay-shader {
  background-color: rgba(0, 0, 0, 0.75);
}

.dx-confirmation-popup-ui .dx-state-focused.dx-overlay-content {
  border: none;
}
.dx-confirmation-popup-ui .dx-overlay-content {
  background: #2c2a24;
  border-radius: 6px;
  border: none;
  border-bottom: 4px solid #f2c400 !important;
}

/* 2. Content Area (No Scrollbar) */
.dx-confirmation-popup-ui .dx-popup-content {
  padding: 16px 16px 8px 16px !important;
  color: #ffffff;
}

/* 3. Typography & Icons */
.dx-confirmation-popup-ui .popup-inner-content {
  text-align: left;
  position: relative;
}

.dx-confirmation-popup-ui .popup-close {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dx-confirmation-popup-ui .popup-close img {
  width: 18px;
  height: 18px;
}

.dx-confirmation-popup-ui .popup-close:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}
.dx-confirmation-popup-ui .popup-close:focus {
  outline: none;
}

.dx-confirmation-popup-ui .popup-icon {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.dx-confirmation-popup-ui .popup-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.dx-confirmation-popup-ui .popup-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.dx-confirmation-popup-ui .popup-body {
  font-size: 14px;
  line-height: 1.45;
  color: #e0e0e0;
  margin-bottom: 16px;
}

/* 4. Toolbar / Button Footer Styling */
.dx-confirmation-popup-ui .dx-toolbar {
  background-color: transparent;
  padding: 8px 16px 16px 16px;
}

.dx-confirmation-popup-ui .dx-toolbar .dx-toolbar-items-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dx-confirmation-popup-ui .dx-toolbar .dx-toolbar-before,
.dx-confirmation-popup-ui .dx-toolbar .dx-toolbar-after {
  width: 160px;
}

/* 5. Button Specific Styles */
/* White Cancel Button */
.dx-confirmation-popup-ui .btn-cancel {
  border-radius: 4px;
  background-color: #f0f0f0;
  border: none;
}
.dx-confirmation-popup-ui .btn-cancel .dx-button-content {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
}

/* Yellow Continue Button */
.dx-confirmation-popup-ui .btn-continue {
  border-radius: 4px;
  background-color: #f2c300 !important;
  border: none;
}
.dx-confirmation-popup-ui .btn-continue .dx-button-content {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
}

/* Hover effects to make it feel interactive */
.dx-confirmation-popup-ui .btn-continue:hover {
  opacity: 0.9;
}
.dx-confirmation-popup-ui .btn-cancel:hover {
  opacity: 0.9;
}

/* 6. Hide the default DevExtreme Title Header if not needed */
.dx-confirmation-popup-ui .dx-popup-title {
  display: none;
}

.dx-confirmation-popup-ui
  .custom-yellow-checkbox.dx-checkbox-checked
  .dx-checkbox-icon {
  background-color: #f2c300 !important;
  border-color: #f2c300 !important;
  color: #000000 !important;
}
.dx-confirmation-popup-ui
  .custom-yellow-checkbox.dx-checkbox.dx-state-hover
  .dx-checkbox-icon,
.dx-confirmation-popup-ui
  .custom-yellow-checkbox.dx-checkbox.dx-state-focused
  .dx-checkbox-icon {
  border-color: #f2c300 !important;
}
.dx-confirmation-popup-ui .custom-yellow-checkbox .dx-checkbox-text {
  font-size: 14px !important;
  line-height: 18px !important;
  padding-left: 10px !important;
}
