/**
 * Create Ads Page Styles
 *
 * @package UltimaAdMarket
 * @since 1.0.0
 */

#toastMsg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 9999;
  display: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: white;
}

#toastMsg.show {
  display: block;
}

#toastMsg.success {
  background-color: #28a745;
  color: white;
}

#toastMsg.error {
  background-color: #dc3545;
  color: white;
}

.wp-core-ui select {
  width: 99%;
  border: 1px solid #c3c3c3 !important;
  padding: 3px 24px 3px 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
