/* Main Styles for Enviaro */
:root {
  --primary: #4ade80;
  --primary-hover: #22c55e;
  --primary-light: #dcfce7;
  --secondary: #f5f5f7;
  --secondary-hover: #e1e1e3;
  --dark: #004050;  /* Updated to match the requested color */
  --light: #f5f5f7;
  --gray: #e5e7eb;
  --white: #ffffff;
  --text: #1d1d1f;
  --light-text: #8a8a8d;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin: 0 0 1.5rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

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

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

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1.125rem;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background-color: var(--white);
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.1;
}

/* Typing animation */
#typed-text {
  position: relative;
  display: inline-flex;
  min-width: 10ch;
  min-height: 60px;
  color: var(--dark);
  font-weight: 800;
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background-color: var(--dark);
  margin-left: 4px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--light-text);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.green-underline, .accent-underline {
  position: relative;
  display: inline-block;
}

.green-underline:after, .accent-underline:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background-color: var(--primary);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.3;
}

/* Button styles update */
.btn-primary {
  background-color: var(--primary);
  color: white;
  border-radius: 2rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  box-shadow: 0 4px 10px rgba(74, 222, 128, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(74, 222, 128, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--dark);
  border-radius: 2rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--light-text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* How it Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--light);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.75rem;
}

/* Clients Section */
.clients {
  padding: 5rem 0;
  background-color: var(--white);
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.client-logo {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

/* Footer */
.footer {
  padding: 5rem 0 2rem;
  background-color: var(--dark);
  color: var(--light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}

/* Documentation Page */
.docs-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.docs-section {
  margin-bottom: 3rem;
}

.code-block {
  background-color: var(--dark);
  color: var(--light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-family: 'Fira Code', monospace;
  line-height: 1.5;
}

.code-block code {
  white-space: pre;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
  color: var(--primary);
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.copy-button:hover {
  color: var(--primary-hover);
}

/* Dashboard */
.dashboard {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background-color: var(--dark);
  color: var(--light);
  padding: 2rem 0;
  flex-shrink: 0;
}

.sidebar-logo {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.sidebar-menu {
  list-style: none;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-icon {
  font-size: 1.25rem;
}

.main-content {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

/* Dashboard Grid Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 1.5rem;
  margin-bottom: 2rem;
  min-height: 300px;
}

.dashboard-widget {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  position: relative;
}

.dashboard-widget:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.dashboard-widget.dragging {
  opacity: 0.8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
  cursor: grabbing;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  cursor: move;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin: 0;
}

.widget-actions {
  display: flex;
  gap: 0.5rem;
}

.widget-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light-text);
  transition: color 0.2s ease;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-action-btn:hover {
  color: var(--primary);
}

.widget-content {
  height: calc(100% - 2.5rem);
  overflow: auto;
}

.widget-placeholder {
  background-color: rgba(74, 222, 128, 0.1);
  border: 2px dashed var(--primary);
  border-radius: 0.5rem;
}

/* Widget Sizes */
.widget-small {
  grid-column: span 6;
  grid-row: span 1;
}

.widget-medium {
  grid-column: span 6;
  grid-row: span 2;
}

.widget-large {
  grid-column: span 8;
  grid-row: span 2;
}

.widget-full {
  grid-column: span 12;
  grid-row: span 2;
}

/* Widget Resize Handle */
.widget-resize-handle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  cursor: nwse-resize;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cccccc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 12 18 12 18 22'%3E%3C/polyline%3E%3Cpolyline points='12 18 12 22 22 22'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom right;
}

/* Dashboard Controls */
.dashboard-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.add-widget-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-widget-btn:hover {
  background-color: var(--primary-hover);
}

.dashboard-layout-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.layout-option {
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  border: 1px solid var(--gray);
  transition: all 0.2s ease;
}

.layout-option:hover, .layout-option.active {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.layout-option svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.stat-label {
  color: var(--light-text);
  font-size: 0.875rem;
}

.data-table {
  width: 100%;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
}

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

.data-table th {
  background-color: rgba(0, 0, 0, 0.02);
  font-weight: 600;
  color: var(--light-text);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background-color: rgba(0, 0, 0, 0.01);
}

.pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
  background-color: white;
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.page-link:hover {
  background-color: var(--gray);
  color: var(--dark);
}

.page-link.active {
  background-color: var(--primary);
  color: white;
}

/* Login Page */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Fixed height instead of min-height */
  background-color: var(--light);
  padding: 0 1rem; /* Add some horizontal padding */
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem; /* Reduced padding */
}

.auth-header {
  text-align: center;
  margin-bottom: 1.5rem; /* Reduced margin */
}

.auth-form-group {
  margin-bottom: 1rem; /* Reduced margin between form elements */
}

.auth-label {
  display: block;
  margin-bottom: 0.25rem; /* Reduced margin */
  font-weight: 500;
  font-size: 0.875rem; /* Smaller font size */
}

.auth-input {
  width: 100%;
  padding: 0.6rem 0.875rem; /* Reduced padding */
  border: 1px solid var(--gray);
  border-radius: 0.375rem;
  font-size: 0.875rem; /* Smaller font size */
  transition: border-color 0.3s ease;
}

.auth-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.auth-button {
  width: 100%;
  padding: 0.6rem; /* Reduced padding */
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem; /* Smaller font size */
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.auth-button:hover {
  background-color: var(--primary-hover);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem; /* Reduced margin */
  font-size: 0.875rem;
  color: var(--light-text);
}

/* Flash Messages */
.flash-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

.flash {
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Contact Lists and Recipients */
.contact-list-card {
  background-color: white;
  border: 1px solid var(--gray);
  border-radius: 0.5rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-list-card:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.contact-list-card.selected {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.3);
}

.recipient-item {
  border-bottom: 1px solid var(--gray);
  transition: background-color 0.2s ease;
}

.recipient-item:last-child {
  border-bottom: none;
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-blue {
  background-color: #dbeafe;
  color: #2563eb;
}

.badge-green {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

/* Button Styles for Campaign Editor */
.btn-green {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-green:hover:not(:disabled) {
  background-color: var(--primary-hover);
}

.btn-green:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.flash-success {
  background-color: #d1fae5;
  color: #065f46;
}

.flash-error {
  background-color: #fee2e2;
  color: #b91c1c;
}

.flash-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: inherit;
  opacity: 0.7;
}

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

/* Responsive Styles */
/* Visitor Details Modal */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease;
}

.modal-content {
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.company-info {
  border: 1px solid var(--gray);
}

.visitor-details-button {
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.visitor-details-button:hover {
  background-color: rgba(74, 222, 128, 0.1);
}

body.overflow-hidden {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

/* Company Logo Styles */
.company-logo-container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tab Styles */
.tab-group {
  display: flex;
  border-bottom: 1px solid var(--gray);
  overflow-x: auto;
}

.tab {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: var(--light-text);
  font-weight: 500;
}

.tab:hover {
  color: var(--primary);
}

.tab.active {
  color: var(--primary);
  font-weight: 600;
}

.tab.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.tab-content {
  display: none;
  padding: 1rem 0;
}

.tab-content.active {
  display: block;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background-color: white;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 1rem 0;
  }
  
  .nav-links {
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .dashboard {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    padding: 1rem;
  }
  
  .sidebar-menu {
    display: flex;
    overflow-x: auto;
    margin-bottom: 1rem;
  }
  
  .main-content {
    padding: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 95%;
    margin: 0 auto;
  }
  
  .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
}
