/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

:root {
  --muted-background: rgba(39, 39, 42, 0.5);
  --background: rgba(9, 9, 11, 1);
  --border: rgba(39, 39, 42, 1);
  --accent: #ffffff;
  --cells-hover-bg: #222831;
  --cell-bg: #4A102A;
}

 body {
  margin: 0;
  padding: 40px 20px;
  font-family: sans-serif;
  background: #111 !important;
  color: #eee !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  width: 100%;
}

.pricing-card {
  background: #1f1f1f;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.8rem;
  color: #00ffd5;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #ccc;
}

button {
  background: #00ffd5;
  color: #111;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

.highlighted {
  border: 2px solid #00ffd5;
  background: #282828;
}


table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

th {
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  text-transform: uppercase;
  background: var(--muted-background);
  border-bottom: 1px solid var(--border);
}

td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

td:hover {
  background: var(--cell-bg);
}

tr {
  background: var(--background);
  transition: all .3s ease;
}

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

.table-cryptic td:has(~ td:hover),
.table-cryptic td:has(+ td:hover),
.table-cryptic td:hover ~ td {
  background: var(--cells-hover-bg);
}

.json-container {
  background: #171717 !important;
}

.json-key {
  color: rgba(122, 122, 122, 0.998) !important;
}
