/* ===== ZARYX TRACKER - CLEAN MODERN CSS ===== */

/* ===== CSS VARIABLES ===== */
:root {
  /* Light Theme (Default) */
  --bg-main: #f8f9fa;
  --bg-white: #ffffff;
  --card-bg: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #6c757d;
  --border-color: #dee2e6;
  --accent-color: #ff8c00;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Dark Mode Theme */
.dark-mode {
  --bg-main: #0d1117;
  --bg-white: #161b22;
  --card-bg: #161b22;
  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --border-color: #30363d;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p.text-muted {
  margin-bottom: 1rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: 60px;
  transition: background 0.3s, color 0.3s;
}

/* Asegurar que Bootstrap Grid funcione */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.row.g-3 {
  row-gap: 1rem;
}

.col-12,
.col-md-6,
.col-lg-6 {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.container,
.container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-content {
  padding: 2rem 0;
  min-height: calc(100vh - 80px);
}

/* ===== NAVBAR ===== */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 60px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Mobile Logo & Toggle */
.navbar-mobile-left {
  display: none;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
}

.navbar-left,
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.navbar-left {
  justify-content: flex-start;
}

.navbar-right {
  justify-content: flex-end;
}

.navbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Nav Items */
.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-item:hover {
  color: var(--accent-color);
  background: rgba(255, 140, 0, 0.05);
}

.nav-item i {
  font-size: 1rem;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.theme-toggle:hover {
  background: rgba(255, 140, 0, 0.05);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* User Menu */
.user-menu {
  position: relative;
}

.user-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.user-btn:hover {
  background: rgba(255, 140, 0, 0.05);
  border-color: var(--accent-color);
}

.user-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.user-text {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-btn i.fa-chevron-down {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.user-btn:hover i.fa-chevron-down {
  transform: rotate(180deg);
}

/* User Dropdown */
.user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 180px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  display: none;
}

.user-dropdown.show {
  display: block;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.dropdown-link:hover {
  background: rgba(255, 140, 0, 0.1);
  color: var(--accent-color);
}

.dropdown-link i {
  width: 18px;
  font-size: 0.9rem;
}

/* Login Button */
.login-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
  border: none;
}

.login-btn:hover {
  background: #e07b00;
  color: #ffffff;
  transform: translateY(-1px);
}

/* ===== STATS BOXES ===== */
.stats-box {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  height: 100%;
}

.stats-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.stats-box .icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-box .stat-text {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ===== CARDS ===== */
.activity-card,
.suggestion-card,
.bug-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.activity-card:hover,
.suggestion-card:hover,
.bug-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.suggestion-card,
.bug-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

/* Card Icons */
.suggestion-icon,
.bug-icon,
.activity-icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.suggestion-icon {
  background: rgba(255, 140, 0, 0.1);
  color: var(--accent-color);
}

.bug-icon {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.activity-icon {
  background: rgba(255, 140, 0, 0.1);
  color: var(--accent-color);
}

/* Card Content */
.suggestion-content,
.bug-content {
  flex: 1;
}

.suggestion-title,
.bug-title {
  color: var(--text-primary);
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  font-size: 1.05rem;
}

.suggestion-meta,
.bug-meta {
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Authors and Avatars */
.suggestion-author,
.bug-author,
.activity-author {
  display: flex;
  align-items: center;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 0.75rem;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 0.5rem;
}

/* Tags and Status */
.category-tag {
  background: rgba(255, 140, 0, 0.1);
  color: var(--accent-color);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.8rem;
  display: inline-block;
}

.status-tag {
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.8rem;
  display: inline-block;
}

.status-tag.status-pending {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.status-tag.status-approved {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

.status-tag.status-implemented {
  background: rgba(0, 150, 136, 0.1);
  color: #009688;
}

.status-tag.status-rejected {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
}

/* Actions */
.suggestion-actions,
.bug-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.votes {
  display: flex;
  gap: 1rem;
}

.vote-count {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-secondary);
}

/* ===== BUTTONS ===== */
.btn {
  border-radius: 6px;
  transition: all 0.2s;
  font-weight: 500;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn i {
  text-decoration: none !important;
}

.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background: #e07b00;
  border-color: #e07b00;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-light {
  border-color: var(--border-color);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--bg-main);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
  font-weight: 500;
}

.back-button:hover {
  opacity: 0.8;
  color: var(--accent-color);
}

.view-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
}

.view-button:hover {
  background: #e07b00;
  transform: translateY(-1px);
  color: #ffffff;
}

/* ===== FORMS ===== */
.form-select,
.form-control,
.field .input,
.field .textarea,
.input,
.textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="color"],
input[type="file"],
textarea {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s;
  width: 100%;
}

.form-select:focus,
.form-control:focus,
.field .input:focus,
.field .textarea:focus,
.input:focus,
.textarea:focus,
input:focus,
textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.15);
  outline: none;
  background: var(--bg-white);
}

::placeholder {
  color: var(--text-secondary);
}

.label {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.help {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Select dropdowns */
.select select,
select {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  width: 100%;
}

.select select option,
select option {
  background: var(--bg-white);
  color: var(--text-primary);
}

/* Select2 Dropdowns */
.select2-container--default .select2-selection--multiple {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: var(--accent-color);
  color: #ffffff;
  border: none;
  border-radius: 4px;
}

.select2-dropdown {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
}

.select2-results__option {
  color: var(--text-primary);
}

.select2-results__option--highlighted[aria-selected] {
  background: var(--accent-color);
  color: #ffffff;
}

/* ===== STAFF PANEL ===== */
.category-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}

.category-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.category-card .drag-handle {
  cursor: grab;
  color: var(--text-secondary);
  padding: 0.5rem;
}

.category-card .category-title {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.05rem;
  flex: 1;
}

.category-actions {
  display: flex;
  gap: 0.5rem;
}

.category-actions .button {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
}

.category-actions .button:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(255, 140, 0, 0.05);
}

.banned-user-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.banned-user-card .user-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ===== MODALS ===== */
.box {
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.modal-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

.modal-card .modal-card-head,
.modal-card .modal-card-foot {
  background: var(--bg-main);
  border-color: var(--border-color);
  padding: 1rem 1.5rem;
}

.modal-card-title {
  color: var(--text-primary);
  font-weight: 600;
}

.modal-card-body {
  background: var(--card-bg);
  color: var(--text-primary);
  padding: 1.5rem;
}

/* ===== SUBMISSION VIEW ===== */
.submission-container {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

/* ===== ERROR PAGE ===== */
.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 2rem;
  text-align: center;
}

.error-icon {
  font-size: 4rem;
  color: #f44336;
  margin-bottom: 1rem;
}

.error-title {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.error-message {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ===== NAVBAR ITEMS (BULMA) ===== */
.navbar-item,
.navbar-link {
  color: var(--text-primary);
  display: block;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-item:hover,
.navbar-link:hover,
.navbar-link.is-active,
.navbar-link:focus,
a.navbar-item.is-active,
a.navbar-item:hover {
  color: var(--accent-color);
  background-color: transparent;
}

/* ===== UTILITY CLASSES ===== */
.muted {
  color: var(--text-secondary);
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 1rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

/* ===== FORM TYPE SELECTOR ===== */
.type-selector {
  margin-bottom: 2rem;
}

.type-button {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.type-button:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.type-button.selected {
  border-color: var(--accent-color);
  background: rgba(255, 140, 0, 0.05);
  box-shadow: var(--shadow);
}

.type-button .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.type-suggestion-btn .icon {
  color: var(--accent-color);
}

.type-bug-btn .icon {
  color: #dc3545;
}

.type-button h3 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.type-button p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.submission-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.field-header {
  margin-bottom: 0.75rem;
}

.field-label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.field-header .icon {
  color: var(--accent-color);
  font-size: 1rem;
}

.create-button {
  background: var(--accent-color);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: all 0.2s;
  border: none;
}

.create-button:hover {
  background: #e07b00;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ===== SUBMISSION VIEW ===== */
.submission-container {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: all 0.2s;
}

.back-button:hover {
  color: #e07b00;
  transform: translateX(-4px);
}

.vote-button:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.vote-button:active {
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  /* Show mobile elements */
  .navbar-mobile-left {
    display: flex;
    align-items: center;
  }

  .navbar-toggle {
    display: flex;
  }

  /* Hide desktop center logo */
  .navbar-center {
    display: none;
  }

  /* Make menu vertical on mobile */
  .navbar-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    height: calc(100vh - 60px);
    background: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow);
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-left,
  .navbar-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-item {
    padding: 0.875rem 1rem;
    justify-content: flex-start;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
  }

  .theme-toggle {
    width: 100%;
    height: 44px;
    justify-content: center;
    font-size: 1rem;
  }

  .user-menu {
    width: 100%;
  }

  .user-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    justify-content: center;
  }

  .login-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    justify-content: center;
    font-size: 0.95rem;
  }

  .user-dropdown {
    position: static;
    margin-top: 0.5rem;
    box-shadow: none;
  }

  body {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .stats-box {
    padding: 1.25rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .category-card {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .suggestion-card,
  .bug-card {
    flex-direction: column;
    text-align: center;
  }

  .suggestion-actions,
  .bug-actions {
    width: 100%;
    justify-content: center;
  }
}
