/* Collection Portfolio Manager Styles — Multi-Binder */

/* ─── Binder Layout (sidebar + content) ─── */
.binder-layout {
  display: flex;
  gap: 0;
  min-height: calc(100vh - 200px);
}

/* ─── Left Sidebar ─── */
.binder-sidebar {
  width: 220px;
  min-width: 220px;
  background: #15263A;
  border-radius: 10px 0 0 10px;
  border-right: 1px solid #2A3F56;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid #2A3F56;
}
.sidebar-title {
  font-family: 'BeaufortBold', Arial, sans-serif;
  font-size: 1rem;
  color: #E6A63C;
}
.sidebar-add-btn {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 1px solid #2A3F56;
  background: #1E3A52;
  color: #93E1FF;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.sidebar-add-btn:hover { background: #2A4F6E; color: #E6A63C; }

.sidebar-list {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
}
.sidebar-list::-webkit-scrollbar { width: 4px; }
.sidebar-list::-webkit-scrollbar-thumb { background: #2A3F56; border-radius: 2px; }

.sidebar-binder {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-left: 3px solid transparent;
}
.sidebar-binder:hover { background: #1E3A52; }
.sidebar-binder.active {
  background: #1E3A52;
  border-left-color: #E6A63C;
}
.sidebar-binder-name {
  flex: 1;
  font-size: 0.85rem;
  color: #F2F2F2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-binder-type {
  font-size: 0.65rem;
  color: #93E1FF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.sidebar-binder-count {
  font-size: 0.7rem;
  color: #5a7a94;
  min-width: 20px;
  text-align: right;
}

.sidebar-settings {
  border-top: 1px solid #2A3F56;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ─── Main Content ─── */
.binder-content {
  flex: 1;
  min-width: 0;
}

/* ─── Collection App / Grid Area ─── */
.collection-app {
  display: flex;
  gap: 0;
  position: relative;
}
.binder-main {
  flex: 1;
  min-width: 0;
  transition: margin-right 0.3s ease;
}
.binder-main.panel-open {
  margin-right: 420px;
}

/* ─── Header / Settings ─── */
.binder-header {
  background: #1E3A52;
  border-radius: 0 10px 0 0;
  padding: 16px 20px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.binder-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.binder-identity .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid #E6A63C;
}
.binder-name-input {
  background: transparent;
  border: 1px solid transparent;
  color: #F2F2F2;
  font-family: 'BeaufortBold', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 4px 8px;
  border-radius: 6px;
  width: 220px;
  max-width: 100%;
}
.binder-name-input:hover, .binder-name-input:focus {
  border-color: #2A4F6E;
  background: #15263A;
  outline: none;
}
.binder-type-label {
  font-size: 0.7rem;
  color: #93E1FF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #0E1C2F;
  padding: 2px 8px;
  border-radius: 4px;
}
.binder-stats-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'BeaufortBold', Arial, sans-serif;
  font-size: 1.1rem;
  color: #E6A63C;
}
.stat-label {
  font-size: 0.7rem;
  color: #93E1FF;
}
.binder-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-label {
  font-size: 0.8rem;
  color: #93E1FF;
}
.binder-settings-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: 1px solid #2A3F56;
  background: #15263A;
  color: #93E1FF;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.binder-settings-btn:hover { background: #2A4F6E; color: #E6A63C; }

/* ─── Value Chart Bar ─── */
.value-chart-bar {
  background: #1E3A52;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.value-chart-label {
  font-size: 0.8rem;
  color: #93E1FF;
  white-space: nowrap;
}
.value-chart-svg {
  flex: 1;
  height: 30px;
  min-width: 100px;
}
.value-chart-svg svg { display: block; }
.value-chart-change {
  font-family: 'BeaufortBold', Arial, sans-serif;
  font-size: 0.85rem;
  white-space: nowrap;
}
.value-up { color: #4CAF50; }
.value-down { color: #FF6B6B; }
.value-flat { color: #93E1FF; }

/* ─── Settings Row ─── */
.setting-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.setting-group label {
  color: #93E1FF;
  font-size: 0.8rem;
  white-space: nowrap;
}
.setting-input {
  background: #15263A;
  border: 1px solid #2A3F56;
  color: #F2F2F2;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
}
.setting-input:focus { border-color: #66CCFF; outline: none; }
.username-status {
  font-size: 0.7rem;
  margin-left: 2px;
}
.username-ok { color: #4CAF50; }
.username-taken { color: #FF6B6B; }

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 40px; height: 22px;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute; inset: 0;
  background: #2A3F56;
  border-radius: 11px;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: #F2F2F2;
  border-radius: 50%;
  transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: #4CAF50; }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }

.share-btn {
  background: #E6A63C;
  color: #0E1C2F;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.8rem;
  white-space: nowrap;
}
.share-btn:hover { background: #d4952e; }
.share-btn:disabled { opacity: 0.5; cursor: default; }

/* ─── Filters ─── */
.filters-bar {
  background: #1E3A52;
  padding: 12px 20px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-search {
  background: #15263A;
  border: 1px solid #2A3F56;
  color: #F2F2F2;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  flex: 1;
  min-width: 160px;
}
.filter-search:focus { border-color: #66CCFF; outline: none; }
.filter-search::placeholder { color: #5a7a94; }

.color-filters {
  display: flex;
  gap: 4px;
}
.color-btn {
  width: 30px; height: 30px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, opacity 0.2s;
  background: none;
  padding: 0;
  opacity: 0.7;
}
.color-btn img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.color-btn:hover { transform: scale(1.15); opacity: 1; }
.color-btn.active { border-color: #E6A63C; transform: scale(1.15); opacity: 1; }

.filter-select {
  background: #15263A;
  border: 1px solid #2A3F56;
  color: #F2F2F2;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
}
.filter-select:focus { border-color: #66CCFF; outline: none; }

.clear-filters-btn {
  background: #E6A63C;
  color: #0E1C2F;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.clear-filters-btn:hover { background: #f0b84d; }

/* ─── Card Grid (Binder) ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  padding: 16px 20px 40px;
}
.card-tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  background: #15263A;
  aspect-ratio: 0.715;
}
.card-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.card-tile.selected {
  outline: 3px solid #E6A63C;
  outline-offset: 2px;
}
.card-tile.not-owned {
  opacity: 0.35;
  filter: grayscale(0.6);
}
.card-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-tile .quantity-badge {
  position: absolute;
  top: 5px; right: 5px;
  background: rgba(14, 28, 47, 0.9);
  color: #E6A63C;
  font-family: 'BeaufortBold', Arial, sans-serif;
  font-size: 0.8rem;
  padding: 2px 7px;
  border-radius: 10px;
  min-width: 22px;
  text-align: center;
}
.card-tile .trade-badge {
  position: absolute;
  top: 5px; left: 5px;
  background: rgba(76, 175, 80, 0.9);
  color: #fff;
  font-size: 0.6rem;
  padding: 2px 5px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
}
.card-tile .card-name-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14, 28, 47, 0.95));
  padding: 18px 6px 6px;
  font-size: 0.7rem;
  color: #F2F2F2;
  line-height: 1.2;
}

/* ─── Tile +/- Controls (hover overlay) ─── */
.tile-controls {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  z-index: 2;
}
.card-tile:hover .tile-controls {
  opacity: 1;
  pointer-events: auto;
}
.tile-ctrl-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.1s;
}
.tile-ctrl-btn:hover { transform: scale(1.15); }
.tile-ctrl-minus {
  background: rgba(255, 107, 107, 0.9);
  color: #fff;
}
.tile-ctrl-plus {
  background: rgba(76, 175, 80, 0.9);
  color: #fff;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #93E1FF;
}
.empty-state h3 { color: #E6A63C; margin-bottom: 10px; }

/* ─── Right Detail Panel ─── */
.detail-panel {
  position: fixed;
  top: 0; right: -440px;
  width: 420px;
  height: 100vh;
  background: #15263A;
  border-left: 2px solid #2A3F56;
  z-index: 100;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}
.detail-panel.open { right: 0; }
.panel-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  color: #93E1FF;
  font-size: 1.5rem;
  cursor: pointer;
}
.panel-close:hover { color: #FF6B6B; }
.panel-card-image {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin: 30px auto 20px;
  display: block;
}
.panel-card-info { margin-bottom: 16px; }
.panel-card-name {
  font-family: 'BeaufortBold', Arial, sans-serif;
  font-size: 1.3rem;
  color: #E6A63C;
  margin-bottom: 4px;
}
.panel-card-meta {
  color: #93E1FF;
  font-size: 0.85rem;
}
.panel-card-text {
  background: #1E3A52;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: #C0C0C0;
  line-height: 1.4;
  font-family: Arial, sans-serif;
}

/* Quantity stepper */
.quantity-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}
.qty-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid #2A3F56;
  background: #1E3A52;
  color: #F2F2F2;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: #2A4F6E; }
.qty-display {
  font-family: 'BeaufortBold', Arial, sans-serif;
  font-size: 1.5rem;
  color: #E6A63C;
  min-width: 40px;
  text-align: center;
}

/* Status toggle */
.status-toggle {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2A3F56;
  margin: 12px 0;
}
.status-option {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  background: #1E3A52;
  color: #93E1FF;
  font-size: 0.85rem;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.status-option:first-child { border-right: 1px solid #2A3F56; }
.status-option.active-collection { background: #2A4F6E; color: #F2F2F2; }
.status-option.active-trade { background: #2E7D32; color: #fff; }

/* Price section in panel */
.panel-price-section {
  background: #1E3A52;
  border-radius: 8px;
  padding: 14px;
  margin: 12px 0;
}
.price-current {
  font-family: 'BeaufortBold', Arial, sans-serif;
  font-size: 1.4rem;
  color: #4CAF50;
}
.price-label { color: #93E1FF; font-size: 0.8rem; }
.price-row {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #C0C0C0;
}
#panel-price-chart {
  width: 100%;
  height: 150px;
  margin-top: 10px;
}

/* Notes */
.panel-notes textarea {
  width: 100%;
  background: #1E3A52;
  border: 1px solid #2A3F56;
  color: #F2F2F2;
  padding: 10px;
  border-radius: 6px;
  resize: vertical;
  min-height: 60px;
  font-size: 0.85rem;
  box-sizing: border-box;
}
.panel-notes textarea:focus { border-color: #66CCFF; outline: none; }

/* Panel actions */
.panel-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.btn-save {
  flex: 1;
  background: #4CAF50;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.btn-save:hover { background: #388E3C; }
.btn-remove {
  background: none;
  border: 1px solid #FF6B6B;
  color: #FF6B6B;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}
.btn-remove:hover { background: rgba(255,107,107,0.15); }

/* ─── Modal ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #15263A;
  border: 1px solid #2A3F56;
  border-radius: 10px;
  width: 380px;
  max-width: 90vw;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #2A3F56;
  font-family: 'BeaufortBold', Arial, sans-serif;
  color: #E6A63C;
  font-size: 1.1rem;
}
.modal-close {
  background: none;
  border: none;
  color: #93E1FF;
  font-size: 1.3rem;
  cursor: pointer;
}
.modal-close:hover { color: #FF6B6B; }
.modal-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-body label {
  color: #93E1FF;
  font-size: 0.85rem;
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

/* ─── Auth prompt ─── */
.auth-prompt {
  text-align: center;
  padding: 80px 20px;
}
.auth-prompt h2 { color: #E6A63C; margin-bottom: 15px; }
.auth-prompt p { color: #93E1FF; margin-bottom: 25px; }
.auth-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin: 0 8px;
  transition: background 0.2s;
}
.auth-btn.google { background: #4285F4; color: #fff; }
.auth-btn.google:hover { background: #3367D6; }
.auth-btn.discord { background: #5865F2; color: #fff; }
.auth-btn.discord:hover { background: #4752C4; }

/* ─── Public Binder View ─── */
.public-header {
  background: #1E3A52;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.public-header .avatar { width: 64px; height: 64px; border-radius: 50%; border: 3px solid #E6A63C; }
.public-header .info h2 { color: #E6A63C; margin: 0 0 4px; }
.public-header .info p { color: #93E1FF; margin: 0; font-size: 0.9rem; }
.public-binder-tabs {
  display: flex;
  gap: 0;
  background: #15263A;
  border-radius: 0 0 10px 10px;
  margin-bottom: 16px;
  overflow-x: auto;
}
.public-binder-tab {
  padding: 10px 18px;
  color: #93E1FF;
  font-size: 0.85rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.public-binder-tab:hover { color: #F2F2F2; }
.public-binder-tab.active {
  color: #E6A63C;
  border-bottom-color: #E6A63C;
}
.trade-notice {
  background: #1E3A52;
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 20px;
  color: #93E1FF;
  font-size: 0.85rem;
  border-left: 4px solid #FF9800;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .binder-layout { flex-direction: column; }
  .binder-sidebar {
    width: 100%;
    min-width: 0;
    border-radius: 10px;
    border-right: none;
    margin-bottom: 12px;
  }
  .sidebar-list {
    display: flex;
    overflow-x: auto;
    padding: 4px 8px;
    gap: 4px;
  }
  .sidebar-binder {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 8px 12px;
    white-space: nowrap;
  }
  .sidebar-binder.active { border-bottom-color: #E6A63C; border-left-color: transparent; }
  .binder-header { border-radius: 10px 10px 0 0; }
  .binder-main.panel-open { margin-right: 0; }
  .detail-panel { width: 100%; right: -100%; padding-top: 60px; padding-bottom: 20px; top: 0; height: calc(100vh - 56px); }
  .panel-close {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    height: 50px;
    background: #0E1C2E;
    border: none;
    border-bottom: 2px solid #2A3F56;
    color: #FF6B6B;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .detail-panel.open .panel-close { display: flex; }
  .panel-close:hover { background: #1A2E44; }
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; padding: 12px; }
  .binder-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 6px; padding: 8px; }
  .filters-bar { flex-direction: column; }
}

/* Hide label text on desktop, show only x */
.panel-close-label { display: none; }
@media (max-width: 900px) {
  .panel-close-label { display: inline; }
}

/* ─── Mobile: <=768px ─── */
@media (max-width: 768px) {
  .container { padding: 10px; margin: 10px auto; }
  .nav { display: none; }
  h1 { font-size: 1.3rem; }
  .subtitle { font-size: 0.75rem; margin-bottom: 12px; }

  .binder-layout { flex-direction: column; }
  .binder-sidebar {
    width: 100%;
    min-width: 0;
    border-radius: 10px;
    border-right: none;
    margin-bottom: 0;
  }
  .sidebar-list {
    display: flex;
    overflow-x: auto;
    padding: 4px 8px;
    gap: 4px;
    scrollbar-width: none;
  }
  .sidebar-list::-webkit-scrollbar { display: none; }
  .sidebar-binder {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 8px 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .sidebar-binder.active { border-bottom-color: #E6A63C; border-left-color: transparent; }
  .sidebar-settings { flex-direction: row; flex-wrap: wrap; padding: 8px 10px; }

  .binder-header {
    border-radius: 0;
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    overflow: hidden;
  }
  .binder-identity { min-width: 0; flex-wrap: wrap; }
  .binder-name-input { width: 140px; font-size: 1rem; }
  .binder-type-label { font-size: 0.6rem; }
  .binder-stats-bar { gap: 10px; width: 100%; }
  .binder-header-actions { width: 100%; }
  .stat-value { font-size: .95rem; }

  .filters-bar {
    flex-direction: column;
    padding: 8px 10px;
    gap: 6px;
  }
  .filter-search { min-width: 0; width: 100%; }
  .color-filters { flex-wrap: wrap; }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 6px;
    padding: 10px;
  }

  .binder-main.panel-open { margin-right: 0; }
  .detail-panel {
    width: 100%;
    right: -100%;
    padding-top: 60px;
    padding-bottom: 20px;
    top: 0;
    height: calc(100vh - 56px);
    height: calc(100dvh - 56px);
  }
  .panel-close {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    height: 50px;
    background: #0E1C2E;
    border: none;
    border-bottom: 2px solid #2A3F56;
    color: #FF6B6B;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0;
  }
  .detail-panel.open .panel-close { display: flex; }
  .panel-close-label { display: inline; }

  .value-chart-bar { padding: 8px 10px; }

  .public-header { flex-direction: column; text-align: center; padding: 16px; }
  .public-binder-tabs { flex-wrap: nowrap; overflow-x: auto; }

  footer { font-size: 0.75rem; }
  footer a { display: none; }

  /* Always show +/- controls on mobile (no hover on touch) */
  .tile-controls {
    opacity: 1;
    pointer-events: auto;
  }
  .tile-ctrl-btn {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
}
