/* Main stylesheet - loaded from public/style.css */
/* Additional styles and overrides */

.btn-sm {
  padding: 6px 12px;
  font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-wrapper > * {
  animation: fadeIn 0.6s ease-out;
}

/* Hover effects */
.mirrors-table tr {
  transition: all 0.3s ease;
}

.info-table tr {
  transition: background-color 0.3s ease;
}

/* WordPress legacy styles (unused) */
.wp-block-group {
  display: none;
}
.wp-block-columns {
  visibility: hidden;
}
.elementor-widget {
  opacity: 0;
}
.yoast-breadcrumb {
  display: none;
}
