/* 强制重置所有样式，确保优先级 */
.moyu-wrapper {
  all: initial !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  line-height: 1.5 !important;
  color: #111827 !important;
  background-color: #f4f5f6 !important;
  display: block !important;
  width: 100% !important;
  min-height: 100vh !important;
  box-sizing: border-box !important;
}

.moyu-wrapper *,
.moyu-wrapper *::before,
.moyu-wrapper *::after {
  box-sizing: border-box !important;
}

.moyu-wrapper .my-container {
  max-width: 64rem !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

.moyu-wrapper .my-header {
  position: sticky !important;
  top: 0 !important;
  background-color: #f4f5f6 !important;
  border-bottom: 1px solid #e5e7eb !important;
  z-index: 999 !important;
  padding: 1rem 0 0.5rem 0 !important;
}

.moyu-wrapper .my-header-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 1rem !important;
}

.moyu-wrapper .my-title {
  font-size: 1.5rem !important;
  font-weight: bold !important;
  color: #111827 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 节假日倒计时区域 */
.moyu-wrapper .my-countdown-section {
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 1rem !important;
  padding: 1rem !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(229, 231, 235, 0.5) !important;
  margin-bottom: 1rem !important;
}

.moyu-wrapper .my-countdown-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #7ead9a !important;
  margin: 0 0 0.75rem 0 !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
}

.moyu-wrapper .my-countdown-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
  gap: 0.75rem !important;
}

.moyu-wrapper .my-countdown-item {
  background: linear-gradient(135deg, rgba(126, 173, 154, 0.1) 0%, rgba(126, 173, 154, 0.05) 100%) !important;
  padding: 0.75rem !important;
  border-radius: 0.75rem !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  border: 2px solid rgba(126, 173, 154, 0.3) !important;
  backdrop-filter: blur(5px) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

.moyu-wrapper .my-countdown-item::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(126, 173, 154, 0.2), transparent) !important;
  transition: left 0.6s ease !important;
}

.moyu-wrapper .my-countdown-item:hover::before {
  left: 100% !important;
}

.moyu-wrapper .my-countdown-item:hover {
  background: linear-gradient(135deg, rgba(126, 173, 154, 0.2) 0%, rgba(126, 173, 154, 0.1) 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(126, 173, 154, 0.25) !important;
  border-color: rgba(126, 173, 154, 0.5) !important;
}

.moyu-wrapper .my-countdown-name {
  font-size: 0.8rem !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
  margin-bottom: 0.25rem !important;
}

.moyu-wrapper .my-countdown-days {
  font-size: 1.2rem !important;
  font-weight: bold !important;
  color: #7ead9a !important;
  margin-bottom: 0.25rem !important;
}

.moyu-wrapper .my-countdown-date {
  font-size: 0.7rem !important;
  color: #9ca3af !important;
}

/* 下班倒计时特殊样式 */
.moyu-wrapper .my-countdown-item.work-end {
  background: linear-gradient(135deg, rgba(126, 173, 154, 0.15) 0%, rgba(126, 173, 154, 0.08) 100%) !important;
  border-color: rgba(126, 173, 154, 0.4) !important;
}

.moyu-wrapper .my-countdown-item.work-end:hover {
  background: linear-gradient(135deg, rgba(126, 173, 154, 0.25) 0%, rgba(126, 173, 154, 0.15) 100%) !important;
  border-color: rgba(126, 173, 154, 0.6) !important;
}

/* 自定义倒计时样式 */
.moyu-wrapper .my-countdown-item.custom {
  background: linear-gradient(135deg, rgba(126, 173, 154, 0.12) 0%, rgba(126, 173, 154, 0.06) 100%) !important;
  border-color: rgba(126, 173, 154, 0.35) !important;
  position: relative !important;
}

.moyu-wrapper .my-countdown-item.custom .my-delete-custom {
  position: absolute !important;
  top: 0.25rem !important;
  right: 0.25rem !important;
  width: 1.2rem !important;
  height: 1.2rem !important;
  background: rgba(239, 68, 68, 0.8) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  font-size: 0.7rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.moyu-wrapper .my-countdown-item.custom:hover .my-delete-custom {
  opacity: 1 !important;
}

/* 添加按钮样式 */
.moyu-wrapper .my-add-countdown {
  background: linear-gradient(135deg, rgba(126, 173, 154, 0.1) 0%, rgba(126, 173, 154, 0.05) 100%) !important;
  padding: 0.75rem !important;
  border-radius: 0.75rem !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  border: 2px dashed rgba(126, 173, 154, 0.4) !important;
  backdrop-filter: blur(5px) !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 80px !important;
}

.moyu-wrapper .my-add-countdown:hover {
  background: linear-gradient(135deg, rgba(126, 173, 154, 0.15) 0%, rgba(126, 173, 154, 0.08) 100%) !important;
  border-color: rgba(126, 173, 154, 0.6) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(126, 173, 154, 0.2) !important;
}

.moyu-wrapper .my-add-icon {
  font-size: 1.5rem !important;
  color: #7ead9a !important;
  margin-bottom: 0.25rem !important;
}

.moyu-wrapper .my-add-text {
  font-size: 0.8rem !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
}

/* 语录导航区域 */
.moyu-wrapper .my-quote-nav {
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 1rem !important;
  padding: 0.5rem 1rem !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(229, 231, 235, 0.5) !important;
  margin-bottom: 1rem !important;
  position: sticky !important;
  top: 120px !important;
  z-index: 998 !important;
}

.moyu-wrapper .my-nav-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  justify-content: center !important;
}

.moyu-wrapper .my-nav-tab {
  flex-shrink: 0 !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 0.75rem !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: rgba(255, 255, 255, 0.7) !important;
  color: #6b7280 !important;
  outline: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.moyu-wrapper .my-nav-tab::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
  transition: left 0.5s ease !important;
}

.moyu-wrapper .my-nav-tab:hover::before {
  left: 100% !important;
}

.moyu-wrapper .my-nav-tab.active {
  background: linear-gradient(135deg, #7ead9a 0%, #6b9b87 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(126, 173, 154, 0.4) !important;
}

.moyu-wrapper .my-nav-tab:not(.active):hover {
  background: rgba(126, 173, 154, 0.1) !important;
  color: #7ead9a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 8px rgba(126, 173, 154, 0.2) !important;
}

/* 语录内容区域 */
.moyu-wrapper .my-content {
  padding: 0.5rem 0 1.5rem 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

.moyu-wrapper .my-quote-section {
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 1rem !important;
  border: 1px solid rgba(229, 231, 235, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  overflow: hidden !important;
  animation: my-slideUp 0.6s ease forwards !important;
  margin-top: 1rem !important;
}

@keyframes my-slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.moyu-wrapper .my-quote-header {
  background: rgba(126, 173, 154, 0.1) !important;
  padding: 1rem 1.5rem !important;
  text-align: center !important;
  border-bottom: 1px solid rgba(229, 231, 235, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.moyu-wrapper .my-quote-title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin: 0 !important;
}

.moyu-wrapper .my-refresh-btn {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.5rem 1rem !important;
  background: linear-gradient(135deg, #7ead9a 0%, #6b9b87 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0.5rem !important;
  cursor: pointer !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: 0 2px 6px rgba(126, 173, 154, 0.3) !important;
}

.moyu-wrapper .my-refresh-btn:hover {
  background: linear-gradient(135deg, #6b9b87 0%, #5a8a76 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 8px rgba(126, 173, 154, 0.4) !important;
}

.moyu-wrapper .my-refresh-btn:active {
  transform: translateY(0) !important;
}

.moyu-wrapper .my-refresh-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.moyu-wrapper .my-refresh-icon {
  width: 0.9rem !important;
  height: 0.9rem !important;
  flex-shrink: 0 !important;
}

.moyu-wrapper .my-refresh-icon.spinning {
  animation: my-spin 1s linear infinite !important;
}

@keyframes my-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.moyu-wrapper .my-quote-content {
  padding: 1.5rem !important;
  text-align: center !important;
  min-height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.moyu-wrapper .my-quote-text {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: #374151 !important;
  font-weight: 400 !important;
  max-width: 100% !important;
  word-wrap: break-word !important;
  white-space: pre-wrap !important;
}

/* 弹窗样式 */
.my-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  padding: 1rem !important;
}

.my-modal-content {
  background: #ffffff !important;
  border-radius: 1rem !important;
  max-width: 400px !important;
  width: 100% !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
  animation: my-modalSlideIn 0.3s ease forwards !important;
}

@keyframes my-modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.my-modal-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1rem 1.5rem !important;
  border-bottom: 1px solid #e5e7eb !important;
  background: #f9fafb !important;
}

.my-modal-header h3 {
  margin: 0 !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
}

.my-close-btn {
  width: 2rem !important;
  height: 2rem !important;
  border: none !important;
  background: #e5e7eb !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  font-size: 1.2rem !important;
  color: #6b7280 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.my-close-btn:hover {
  background: #d1d5db !important;
  color: #374151 !important;
}

.my-modal-body {
  padding: 1.5rem !important;
}

.my-form-group {
  margin-bottom: 1rem !important;
}

.my-form-group:last-child {
  margin-bottom: 0 !important;
}

.my-form-label {
  display: block !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #374151 !important;
  margin-bottom: 0.5rem !important;
}

.my-form-input {
  width: 100% !important;
  padding: 0.75rem !important;
  border: 1px solid #d1d5db !important;
  border-radius: 0.5rem !important;
  font-size: 0.875rem !important;
  color: #374151 !important;
  background: #ffffff !important;
  transition: all 0.3s ease !important;
  outline: none !important;
}

.my-form-input:focus {
  border-color: #7ead9a !important;
  box-shadow: 0 0 0 3px rgba(126, 173, 154, 0.1) !important;
}

.my-form-buttons {
  display: flex !important;
  gap: 0.75rem !important;
  justify-content: flex-end !important;
  margin-top: 1.5rem !important;
}

.my-btn {
  padding: 0.75rem 1.5rem !important;
  border: none !important;
  border-radius: 0.5rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  outline: none !important;
}

.my-btn-primary {
  background: linear-gradient(135deg, #7ead9a 0%, #6b9b87 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(126, 173, 154, 0.3) !important;
}

.my-btn-primary:hover {
  background: linear-gradient(135deg, #6b9b87 0%, #5a8a76 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 8px rgba(126, 173, 154, 0.4) !important;
}

.my-btn-secondary {
  background: #f3f4f6 !important;
  color: #6b7280 !important;
  border: 1px solid #d1d5db !important;
}

.my-btn-secondary:hover {
  background: #e5e7eb !important;
  color: #374151 !important;
}

/* 加载状态 */
.moyu-wrapper .my-loading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  color: #6b7280 !important;
  font-size: 0.9rem !important;
}

.moyu-wrapper .my-loading-spinner {
  width: 1.5rem !important;
  height: 1.5rem !important;
  border: 2px solid rgba(126, 173, 154, 0.2) !important;
  border-top: 2px solid #7ead9a !important;
  border-radius: 50% !important;
  animation: my-spin 1s linear infinite !important;
  margin-bottom: 0.5rem !important;
}

/* 错误状态 */
.moyu-wrapper .my-error {
  color: #ef4444 !important;
  font-size: 0.9rem !important;
  text-align: center !important;
}

/* 隐藏状态 */
.moyu-wrapper .my-hidden {
  display: none !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .moyu-wrapper .my-container {
    padding: 0 0.5rem !important;
  }

  .moyu-wrapper .my-header {
    padding: 0.5rem 0 0.25rem 0 !important;
  }

  .moyu-wrapper .my-title {
    font-size: 1.2rem !important;
    text-align: center !important;
  }

  .moyu-wrapper .my-countdown-section {
    padding: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .moyu-wrapper .my-countdown-title {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
  }

  .moyu-wrapper .my-countdown-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  .moyu-wrapper .my-countdown-item {
    padding: 0.5rem !important;
    min-height: 70px !important;
  }

  .moyu-wrapper .my-countdown-name {
    font-size: 0.7rem !important;
    margin-bottom: 0.2rem !important;
  }

  .moyu-wrapper .my-countdown-days {
    font-size: 1rem !important;
    margin-bottom: 0.2rem !important;
  }

  .moyu-wrapper .my-countdown-date {
    font-size: 0.65rem !important;
  }

  .moyu-wrapper .my-add-countdown {
    padding: 0.5rem !important;
    min-height: 70px !important;
  }

  .moyu-wrapper .my-add-icon {
    font-size: 1.2rem !important;
    margin-bottom: 0.2rem !important;
  }

  .moyu-wrapper .my-add-text {
    font-size: 0.7rem !important;
  }

  .moyu-wrapper .my-quote-nav {
    top: 80px !important;
    padding: 0.4rem 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .moyu-wrapper .my-nav-tabs {
    flex-direction: column !important;
    gap: 0.3rem !important;
  }

  .moyu-wrapper .my-nav-tab {
    width: 100% !important;
    text-align: center !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
  }

  .moyu-wrapper .my-quote-section {
    margin-top: 0.75rem !important;
  }

  .moyu-wrapper .my-quote-header {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
    padding: 0.75rem 1rem !important;
  }

  .moyu-wrapper .my-quote-title {
    font-size: 1rem !important;
  }

  .moyu-wrapper .my-refresh-btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
  }

  .moyu-wrapper .my-quote-content {
    padding: 1rem !important;
    min-height: 80px !important;
  }

  .moyu-wrapper .my-quote-text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  .my-modal {
    padding: 0.5rem !important;
  }

  .my-modal-content {
    margin: 0 !important;
  }

  .my-modal-header {
    padding: 0.75rem 1rem !important;
  }

  .my-modal-header h3 {
    font-size: 1rem !important;
  }

  .my-modal-body {
    padding: 1rem !important;
  }

  .my-form-buttons {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .my-btn {
    width: 100% !important;
    padding: 0.6rem 1rem !important;
  }
}

@media (max-width: 480px) {
  .moyu-wrapper .my-container {
    padding: 0 0.4rem !important;
  }

  .moyu-wrapper .my-title {
    font-size: 1.1rem !important;
  }

  .moyu-wrapper .my-countdown-section {
    padding: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .moyu-wrapper .my-countdown-title {
    font-size: 0.85rem !important;
  }

  .moyu-wrapper .my-countdown-grid {
    grid-template-columns: 1fr !important;
    gap: 0.4rem !important;
  }

  .moyu-wrapper .my-countdown-item {
    padding: 0.6rem !important;
    min-height: 65px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
  }

  .moyu-wrapper .my-countdown-item .my-countdown-info {
    flex: 1 !important;
  }

  .moyu-wrapper .my-countdown-item .my-countdown-days {
    font-size: 1.1rem !important;
    text-align: right !important;
    margin-bottom: 0 !important;
  }

  .moyu-wrapper .my-add-countdown {
    padding: 0.6rem !important;
    min-height: 65px !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }

  .moyu-wrapper .my-add-icon {
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
  }

  .moyu-wrapper .my-add-text {
    font-size: 0.8rem !important;
  }

  .moyu-wrapper .my-quote-nav {
    top: 70px !important;
    padding: 0.3rem 0.5rem !important;
    margin-bottom: 0.6rem !important;
  }

  .moyu-wrapper .my-nav-tabs {
    gap: 0.25rem !important;
  }

  .moyu-wrapper .my-nav-tab {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
  }

  .moyu-wrapper .my-quote-content {
    padding: 0.75rem !important;
    min-height: 70px !important;
  }

  .moyu-wrapper .my-quote-text {
    font-size: 0.8rem !important;
  }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
  .moyu-wrapper .my-container {
    padding: 0 0.3rem !important;
  }

  .moyu-wrapper .my-countdown-item {
    padding: 0.5rem !important;
    min-height: 60px !important;
  }

  .moyu-wrapper .my-countdown-name {
    font-size: 0.65rem !important;
  }

  .moyu-wrapper .my-countdown-days {
    font-size: 0.95rem !important;
  }

  .moyu-wrapper .my-countdown-date {
    font-size: 0.6rem !important;
  }

  .moyu-wrapper .my-nav-tab {
    padding: 0.35rem 0.6rem !important;
    font-size: 0.7rem !important;
  }

  .moyu-wrapper .my-quote-text {
    font-size: 0.75rem !important;
  }
}

/* 特殊动画效果 */
.moyu-wrapper .my-quote-text.fade-in {
  animation: my-fadeIn 0.5s ease-in-out !important;
}

@keyframes my-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 浮动动画 */
.moyu-wrapper .my-float {
  animation: my-float 3s ease-in-out infinite !important;
}

@keyframes my-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* 提示消息样式 */
.my-toast {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.5rem !important;
  color: #ffffff !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  z-index: 10000 !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.my-toast.my-toast-show {
  transform: translateX(0) !important;
}

.my-toast.my-toast-success {
  background: #10b981 !important;
}

.my-toast.my-toast-error {
  background: #ef4444 !important;
}

.my-toast.my-toast-warning {
  background: #f59e0b !important;
}

.my-toast.my-toast-info {
  background: #3b82f6 !important;
}

/* 响应式优化 */
@media (max-width: 768px) {
  .my-toast {
    right: 10px !important;
    left: 10px !important;
    transform: translateY(-100%) !important;
  }

  .my-toast.my-toast-show {
    transform: translateY(0) !important;
  }
}
