/* ========================================
   CONSOLIDATED CSS STYLES
   ======================================== */

/* Root Variables */
:root {
  --primary: #5865f2;
  --primary-dark: #4752c4;
  --bg-color: #f9fafb;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
  --text-color: #333;
  --error: #ef4444;
  --success: #10b981;
  --success-light: #ecfdf5;
  --success-border: #a7f3d0;
  --error-light: #fee2e2;
  --error-border: #fecaca;
  --danger: #ef4444;
  --warning-bg: #fff7ed;
  --warning-border: #ffedd5;
  --warning-text: #c2410c;
  --light-gray: #f3f4f6;
  --muted-text: #6b7280;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

a {
  text-decoration: none;
}

/* Container Styles */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-d {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 1.5rem;
}

.container-fluid {
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

.main-container {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.two-section-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.add-user-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.add-counter-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.edit-counter-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
/* dashboard */

.dashboard {
  padding: 20px;
}

.dashboard-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.stat-icon.blue {
  background-color: rgba(67, 97, 238, 0.1);
  color: var(--primary-color);
}

.stat-icon.green {
  background-color: rgba(76, 201, 240, 0.1);
  color: var(--success-color);
}

.stat-icon.red {
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--danger-color);
}

.stat-icon.yellow {
  background-color: rgba(255, 183, 3, 0.1);
  color: var(--warning-color);
}

.stat-details {
  flex-grow: 1;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #6c757d;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

.card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
}

.card-filter {
  background: none;
  border: none;
  color: #6c757d;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.card-filter span {
  margin-left: 5px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  /* border-bottom: 2px solid var(--primary); */
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary);
}

.text-white {
  color: white !important;
}

.text-muted {
  color: var(--muted-text);
}

.fw-bold {
  font-weight: 700;
}

/* Card Styles */
.card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  animation: fadeIn 0.4s ease-out;
  margin-bottom: 2rem;
  overflow: hidden;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin: -2rem -2rem 1rem -2rem;
  background-color: rgba(0, 0, 0, 0.02);
}

.card-header.primary {
  background-color: var(--primary);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
}

.card-header h4,
.card-header h5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--muted-text);
}

.form-container {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  animation: fadeIn 0.4s ease-out;
}

/* Specialized Cards */
.summary-card,
.optimal-card,
.worst-card {
  border-top: 5px solid;
}

.summary-card {
  border-top-color: var(--primary);
}

.optimal-card {
  border-top-color: var(--success);
}

.worst-card {
  border-top-color: var(--danger);
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: #4b5563;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: #fff;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}

.form-select option:disabled {
  color: #9ca3af;
  font-style: italic;
}

.form-select option[data-submitted="true"] {
  color: var(--primary);
  font-weight: 500;
}

.form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.form-buttons .btn {
  flex: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-success {
  color: #fff;
  background-color: var(--success);
  border-color: var(--success);
}

.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.3);
}

.btn-danger {
  color: #fff;
  background-color: var(--danger);
  border-color: var(--danger);
}

.btn-danger:hover {
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-warning {
  color: var(--warning-text);
  background-color: var(--warning-bg);
  border-color: var(--warning-border);
}

.btn-warning:hover {
  background-color: #fdba74;
  border-color: #fb923c;
}

.btn-close {
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  cursor: pointer;
}

.btn-close:hover {
  opacity: 0.75;
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

table,
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
  color: var(--text-color);
}

th,
td,
.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

th,
.table th {
  font-weight: 600;
  color: #4b5563;
  font-size: 0.875rem;
}

.table thead th {
  vertical-align: bottom;
  background-color: var(--light-gray);
  font-weight: 500;
  text-align: left;
}

.table-dark th {
  background-color: #374151;
  color: white;
}

.table-bordered {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid var(--border-color);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

tbody tr:hover {
  background-color: rgba(88, 101, 242, 0.05);
}

/* Table Highlights */
.table-primary,
.table-primary > td,
.table-primary > th {
  background-color: rgba(88, 101, 242, 0.1);
}

.table-success,
.table-success > td,
.table-success > th {
  background-color: rgba(16, 185, 129, 0.1);
}

.table-danger,
.table-danger > td,
.table-danger > th {
  background-color: rgba(239, 68, 68, 0.1);
}

.total-col {
  background-color: rgba(88, 101, 242, 0.05) !important;
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 30px;
  background-color: rgba(88, 101, 242, 0.1);
  color: var(--primary);
}

.empty-message {
  padding: 2rem;
  text-align: center;
  color: #6b7280;
  font-style: italic;
}

.actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

/* Alert Styles */
.alert {
  position: relative;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
}

.alert-warning {
  color: var(--warning-text);
  background-color: var(--warning-bg);
  border-color: var(--warning-border);
}

.alert-success {
  color: var(--success);
  background-color: var(--success-light);
  border: 1px solid var(--success-border);
}

.alert-danger {
  color: var(--error);
  background-color: var(--error-light);
  border: 1px solid var(--error-border);
}

.alert-info {
  color: var(--primary);
  background-color: rgba(88, 101, 242, 0.1);
  border-color: rgba(88, 101, 242, 0.2);
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}

/* Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1050;
  overflow-y: auto;
}

.modal.fade {
  transition: opacity 0.15s linear;
  opacity: 0;
}

.modal.fade.show {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  max-width: 500px;
  pointer-events: none;
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.modal-footer .btn {
  width: auto;
  margin-left: 0.5rem;
}

/* Toast Styles */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1050;
}

.toast {
  display: none;
  max-width: 450px;
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--border-color);
}

.toast-body {
  padding: 0.75rem 1rem;
}

.toast-close {
  background: transparent;
  border: 0;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s ease-in-out;
}

.toast-close:hover {
  opacity: 1;
}

/* Accordion Components */
.accordion {
  margin-bottom: 1.5rem;
}

.accordion-item {
  margin-bottom: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--card-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  text-align: left;
  background-color: var(--card-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: rgba(88, 101, 242, 0.05);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-button:focus {
  border-color: rgba(88, 101, 242, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(88, 101, 242, 0.25);
  outline: 0;
}

.accordion-button::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem;
  position: absolute;
  right: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

.accordion-button.collapsed::after {
  transform: rotate(-90deg);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-collapse.show {
  max-height: 1000px;
}

.accordion-body {
  padding: 1.5rem;
}

/* Winning Numbers Display */
.winning-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.winning-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.winning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.winning-card-header {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.winning-card-body {
  padding: 1.5rem;
  text-align: center;
}

.lowest-number {
  font-size: 2.5rem;
  font-weight: 700;
  background-color: var(--primary);
  color: white;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 10px rgba(88, 101, 242, 0.3);
}

/* Date Selector */
.date-selector {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.date-input-group {
  flex: 1;
}

.date-selector .btn {
  height: 48px;
  min-width: 120px;
}

.date-highlight {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Number Grid Selector */
.number-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 10px 0;
}

.number-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0;
  background-color: var(--card-bg);
}

.number-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}

.number-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Form Inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Utility Classes */
.profit {
  color: var(--success);
  font-weight: 600;
}

.loss {
  color: var(--danger);
  font-weight: 600;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-success {
  background-color: var(--success) !important;
}

.bg-danger {
  background-color: var(--danger) !important;
}

.bg-light {
  background-color: var(--light-gray) !important;
}

/* Flexbox and Grid Utilities */
.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-md-end {
  justify-content: flex-end;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.d-grid {
  display: grid;
}

/* Spacing Utilities */
.g-3 {
  gap: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Responsive Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-3,
.col-md-4,
.col-md-6,
.col-md-12,
.col-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

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

@keyframes highlight {
  0% {
    background-color: rgba(88, 101, 242, 0);
  }
  50% {
    background-color: rgba(88, 101, 242, 0.15);
  }
  100% {
    background-color: rgba(88, 101, 242, 0);
  }
}

.highlight {
  animation: highlight 1.5s ease-in-out;
}

/* Responsive */
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .two-section-container {
    flex-direction: row;
  }

  .winning-number-section {
    flex: 1;
    margin-right: 1rem;
  }

  .profit-loss-section {
    flex: 1;
    margin-left: 1rem;
  }
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 1rem;
  }

  .container-d {
    padding-top: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
  }

  .card-body {
    padding: 1.25rem;
  }

  .table th,
  .table td {
    padding: 0.5rem 0.75rem;
  }

  .actions {
    flex-direction: column;
  }

  .lowest-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.75rem;
  }

  .accordion-button {
    padding: 0.75rem 1rem;
  }

  .accordion-body {
    padding: 1rem;
  }

  .date-selector {
    flex-direction: column;
    gap: 1rem;
  }

  .date-selector .btn {
    width: 100%;
  }

  .winning-cards {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .number-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
