<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* WP Boring Popup Frontend Styles */

#wp-boring-popup-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;
  max-width: 320px;
  width: 100%;
  pointer-events: none;
}

.wp-boring-popup {
  position: relative;
  width: 300px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  padding: 12px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.3s ease;
  overflow: hidden;
  pointer-events: auto;
}

.wp-boring-popup-show {
  transform: translateX(0);
  opacity: 1;
}

.wp-boring-popup-hide {
  transform: translateX(120%);
  opacity: 0;
}

.wp-boring-popup-icon {
  flex: 0 0 45px;
  height: 45px;
  margin-right: 10px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.wp-boring-popup-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.wp-boring-popup-icon a {
  display: block;
  width: 100%;
  height: 100%;
}

.wp-boring-popup-icon a:hover img {
  transform: scale(1.05);
}

.wp-boring-popup-default-icon {
  width: 100%;
  height: 100%;
  background-color: #5b5b5b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-boring-popup-default-icon::before {
  content: "!";
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.wp-boring-popup-content {
  flex: 1;
  min-width: 0;
}

.wp-boring-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.wp-boring-popup-header h4 {
  font-family: inherit;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wp-boring-popup-time {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  margin-left: 8px;
}

.wp-boring-popup-body {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  word-wrap: break-word;
}

.wp-boring-popup-close {
  padding: 15px;
  text-decoration: none !important;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: #666;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.wp-boring-popup:hover .wp-boring-popup-close {
  opacity: 1;
}

.wp-boring-popup-close:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #333;
}

/* Special styles for specific popup types */
.wp-boring-popup[data-type="error"] .wp-boring-popup-icon {
  background-color: #ffebee;
}

.wp-boring-popup[data-type="success"] .wp-boring-popup-icon {
  background-color: #e8f5e9;
}

.wp-boring-popup[data-type="warning"] .wp-boring-popup-icon {
  background-color: #fff8e1;
}

/* Mobile adjustments */
@media screen and (max-width: 480px) {
  #wp-boring-popup-container {
    right: 10px;
    left: 10px;
    max-width: none;
    width: auto;
  }

  .wp-boring-popup {
    width: 100%;
  }
}
</pre></body></html>