/**
 * Card Oracle CSS for the public pages
 */

#reading-send {
  margin-inline-start: 15px;
}

#card-oracle-cardsubmit:disabled {
  background: gray;
}

.hiddenreadingsubmit {
  visibility: hidden;
}

.btn-block {
  opacity: 0.2;
  margin: 10px 0;
}

.card-oracle-btn {
  border: none;
  background: none;
  display: inline-block;
  height: 200px;
  margin: 4px;
  padding: 0;
  width: auto;
}

.card-oracle-btn img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.card-oracle-btn:hover {
  background: none;
}

.card-oracle-button {
  height: 50px;
}

.card-oracle-cards {
  display: grid;
  gap: 0.5rem;
  grid-auto-rows: min-content;
  grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
  justify-content: center;
  padding: 1rem;
  margin-bottom: 2rem;
}

/* Shuffle button styling */
.card-oracle-shuffle-container {
  text-align: center;
  margin: 1rem 0;
}

.card-oracle-shuffle-button {
  background: var(--co-accent, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
  border: none;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-oracle-shuffle-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  filter: brightness(1.1);
}

.card-oracle-reading:not([style*="--co-accent"]) .card-oracle-shuffle-button:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.card-oracle-reading--has-bg {
  background-image: var(--co-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1.5rem;
  border-radius: 8px;
}

.card-oracle-reading--loading {
  position: relative;
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.15s ease-in;
}

.card-oracle-reading--loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.card-oracle-wc-gate {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.card-oracle-wc-gate__heading {
  margin: 0 0 0.5rem;
}

.card-oracle-wc-gate__price {
  font-size: 1.25rem;
  margin: 0.25rem 0 1rem;
}

.card-oracle-wc-gate__button {
  display: inline-block;
  margin-inline-end: 0.5rem;
}

.card-oracle-wc-gate__hint {
  font-size: 0.9rem;
  opacity: 0.8;
}

.card-oracle-shuffle-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(118, 75, 162, 0.35);
  transform: translateY(-1px);
}

.card-oracle-shuffle-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.card-oracle-shuffle-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Bottom shuffle button styling */
.card-oracle-shuffle-bottom {
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Hidden shuffle button after card selection */
.card-oracle-shuffle-container.hidden {
  display: none;
}

.card-oracle-shuffle-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.card-oracle-shuffle-button:hover .card-oracle-shuffle-icon {
  transform: rotate(180deg);
}

.card-oracle-shuffle-button:focus-visible .card-oracle-shuffle-icon {
  transform: rotate(140deg);
}

.card-oracle-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Card shuffle animations - CodeSandbox style */
.card-oracle-cards.washing {
  position: relative;
  min-height: 400px; /* Maintain height during shuffle to prevent footer jumping */
  overflow: hidden; /* Prevent layout shifts from absolute positioned cards */
}

.card-oracle-card.washing {
  position: absolute !important;
  z-index: 100;
}

.card-oracle-card.shuffle-moving {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.card-oracle-card.shuffle-returning {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Circular layout specific shuffle animations */
.tarot-deck-circle.washing {
  position: relative;
  min-height: 400px; /* Maintain height during shuffle to prevent footer jumping */
  overflow: hidden; /* Prevent layout shifts from absolute positioned cards */
}

.tarot-spread-circle.washing {
  position: relative;
}

.tarot-spread-circle.washing li {
  position: absolute !important;
  z-index: 100;
}

.tarot-spread-circle li.shuffle-moving {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.tarot-spread-circle li.shuffle-returning {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Overlapping layout specific shuffle animations */
.tarot-deck-overlap.washing {
  position: relative;
  min-height: 400px; /* Maintain height during shuffle to prevent footer jumping */
  overflow: hidden; /* Prevent layout shifts from absolute positioned cards */
}

.tarot-deck-overlap.washing ul {
  position: relative;
}

.tarot-deck-overlap.washing li {
  position: absolute !important;
  z-index: 100;
}

.tarot-deck-overlap li.shuffle-moving {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.tarot-deck-overlap li.shuffle-returning {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
  .card-oracle-cards {
    grid-template-columns: repeat(auto-fit, minmax(120px, 160px));
    gap: 0.3rem;
    padding: 0.5rem;
  }
  
  .card-oracle-shuffle-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  .card-oracle-cards {
    grid-template-columns: repeat(auto-fit, minmax(100px, 140px));
    gap: 0.2rem;
    padding: 0.25rem;
  }
  
  .card-oracle-shuffle-button {
    font-size: 12px;
    padding: 8px 16px;
  }
}

.card-oracle-card {
  perspective: 300px;
  width: auto;
  height: 220px;
}

.card-oracle-card-body {
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
}

.card-oracle-card-body.is-flipped {
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.card-oracle-back,
.card-oracle-front,
.card-oracle-front-reverse {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.card-oracle-back img,
.card-oracle-front img,
.card-oracle-front-reverse img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.card-oracle-front,
.card-oracle-front-reverse {
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.card-oracle-front-reverse {
  -ms-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.card-oracle-back:hover {
  background: #fff;
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: transform 0.2s; /* Animation */
}

.card-oracle-nohover {
  pointer-events: none;
}

.card-oracle-img-btn {
  background: none;
  display: block;
  height: 100%;
  width: 100%;
}

.card-oracle-email p {
  font-weight: 700;
}

.card-oracle-subscribe {
  margin: 5px;
}

.card-oracle-subscribe label {
  margin-inline-start: 5px;
}

.card-oracle-description-grid {
  box-sizing: border-box;
  display: grid;
  gap: 1rem;
  grid-template-areas:
    "card-oracle-description-header"
    "card-oracle-description-main"
    "card-oracle-description-footer";
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
}

.card-oracle-description-footer {
  border: 1px solid #3582c4;
  grid-area: card-oracle-description-footer;
  padding: 5px 10px;
  text-align: center;
}

.card-oracle-description-header {
  font-size: 1.75rem;
  font-weight: 700;
  grid-area: card-oracle-description-header;
  text-align: center;
}

.card-oracle-description-main {
  box-sizing: border-box;
  grid-area: card-oracle-description-main;
  padding: 10px;
}

.cotd-wrapper,
.mobile-wrapper,
.card-oracle-presentation-grid {
  box-sizing: border-box;
  display: grid;
  gap: 1rem;
  grid-template-areas:
    "cotd-header cotd-header cotd-header"
    "cotd-aside cotd-aside cotd-aside"
    "cotd-main cotd-main cotd-main"
    "cotd-footer cotd-footer cotd-footer";
  grid-template-columns: minmax(220px, 220px) 1fr 1fr;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
}

.cotd-aside,
.card-oracle-presentation-image {
  align-items: flex-start;
  display: flex;
  grid-area: cotd-aside;
  justify-content: center;
  padding: 10px;
  max-width: 220px;
  overflow: hidden;
}

.cotd-footer {
  grid-area: cotd-footer;
  padding: 10px;
  text-align: center;
}

.cotd-footer-text {
  margin-bottom: 10px;
}

.cotd-powered-by {
  display: block;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}

.cotd-powered-by-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.cotd-powered-by-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  color: #fff;
  text-decoration: none;
}

.cotd-powered-by-icon {
  font-size: 1rem;
}

.cotd-powered-by-text {
  opacity: 0.9;
}

.cotd-powered-by-brand {
  font-weight: 700;
}

.cotd-header,
.card-oracle-presentation-header {
  font-size: 1.75rem;
  font-weight: 700;
  grid-area: cotd-header;
  text-align: center;
}

.cotd-main,
.card-oracle-presentation-main {
  box-sizing: border-box;
  grid-area: cotd-main;
  padding: 10px;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Improved responsive design */
@media screen and (max-width: 480px) {
  .cotd-wrapper,
  .card-oracle-presentation-grid {
    padding: 5px;
    gap: 0.5rem;
  }
  
  .cotd-aside,
  .card-oracle-presentation-image {
    padding: 5px;
    max-width: 100%;
  }
  
  .cotd-main,
  .card-oracle-presentation-main {
    padding: 5px;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .cotd-wrapper,
  .card-oracle-presentation-grid {
    padding: 8px;
    gap: 0.75rem;
  }
  
  .cotd-aside,
  .card-oracle-presentation-image {
    max-width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .cotd-wrapper,
  .card-oracle-presentation-grid {
    box-sizing: border-box;
    display: grid;
    gap: 1rem;
    grid-template-areas:
      "cotd-header cotd-header cotd-header"
      "cotd-aside cotd-main cotd-main"
      "cotd-footer cotd-footer cotd-footer";
    grid-template-columns: minmax(200px, 220px) minmax(0, 1fr) minmax(0, 1fr);
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
  }
  
  .cotd-aside,
  .card-oracle-presentation-image {
    max-width: 220px;
  }
}

.card-oracle-rotate-image {
  align-items: flex-end;
  -ms-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

/* Ensure images in reading results don't overflow */
.cotd-aside img,
.card-oracle-presentation-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent text overflow in grid layouts */
.cotd-wrapper *,
.card-oracle-presentation-grid * {
  max-width: 100%;
  box-sizing: border-box;
}

/* Additional text handling for long content */
.cotd-main h1,
.cotd-main h2,
.cotd-main h3,
.cotd-main h4,
.cotd-main h5,
.cotd-main h6,
.card-oracle-presentation-main h1,
.card-oracle-presentation-main h2,
.card-oracle-presentation-main h3,
.card-oracle-presentation-main h4,
.card-oracle-presentation-main h5,
.card-oracle-presentation-main h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.cotd-main p,
.card-oracle-presentation-main p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.5;
}

.tarot-deck-circle-container {
  /* Break out of content column to center relative to viewport */
  width: 100%;
  min-height: 400px;
  overflow: visible;
}

@media screen and (min-width: 1025px) {
  .tarot-deck-circle-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .tarot-deck-circle {
    --scale: clamp(120px, 12vw, 180px); /* Default scale for large screens */
  }

  ul.tarot-spread-circle {
    min-height: 340px;
    min-width: 200px;
  }
}

.tarot-deck-circle {
  /* Height based on window dimensions — --scale set by breakpoint queries below */
  height: calc(var(--scale) * 6.5);
  width: 100%;
  margin: calc(var(--scale) * 0.3) auto;
  position: relative; /* Ensure proper positioning context */
}

ul.tarot-spread-circle {
  /* Setting the required proportions to the cards with fallback values */
  height: calc(var(--scale, 200px) * 1.7); /* Fallback to 200px if --scale fails */
  list-style-type: none !important;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--scale, 200px) * 1);
}

/* Media queries to ensure that the circle always fits the screen */

@media (orientation: landscape) and (min-width: 1025px) { .tarot-deck-circle { --scale: clamp(110px, 11vh, 160px); } }

@media (orientation: portrait) and (min-width: 1025px) { .tarot-deck-circle { --scale: clamp(110px, 11vw, 160px); } }

ul.tarot-spread-circle li {
  /* Here we duplicate the size of the parent block */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #fff;
  height: inherit;
  left: 0;
  margin: 0;
  pointer-events: auto;
  position: absolute;
  top: 0;
  transform-origin: 50% var(--circular-diameter, 235%) 0; /* Position cards around circle circumference */
  -webkit-transform-origin: 50% var(--circular-diameter, 235%) 0;
  transition: transform 0.3s ease-out;
  width: inherit;
}

.tarot-deck-circle ul.tarot-spread-circle li {
  border: 1px solid #c5d9ed;
  border-radius: 5px;
  padding: 0;
}

.tarot-deck-circle li img {
  border-radius: 5px;
  cursor: pointer;
  display: block;
  height: 100%;
  margin: 0 auto;
  pointer-events: auto;
  width: 100%;
}

.tarot-deck-circle li img:hover {
  filter: brightness(50%);
}

.tarot-deck-circle li img.card-oracle-image-hidden,
.card-oracle-image-hidden {
  display: none;
}

/*
 * Robustness guarantee for the circle/overlap/spread layouts: never reveal the
 * front (second) image while the back (first) image is still visible. The
 * reveal toggles a hidden class on each image independently, so if only one
 * side toggles -- or the JS state desyncs -- both images would otherwise render
 * in normal flow and overlap. Forcing the front hidden until the back is hidden
 * keeps exactly one face visible at all times.
 */
.tarot-deck-circle li:not(:has(> img:first-child.card-oracle-image-hidden)) > img:last-child,
.tarot-deck-overlap li:not(:has(> img:first-child.card-oracle-image-hidden)) > img:last-child {
  display: none;
}

.tarot-deck-overlap {
  min-height: 350px !important; /* Increased height to accommodate raised selected cards */
  position: relative; /* Ensure proper positioning context */
  overflow: visible; /* Allow raised cards to be visible */
  padding-bottom: 120px; /* Add padding to accommodate raised cards */
}

.tarot-deck-overlap ul {
  list-style-type: none !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 60%;
  margin: 0 auto;
}

.tarot-deck-overlap li {
  margin-inline-end: -80px;
  margin-top: 20px;
  padding: 0;
  z-index: 1;
  transition: transform 0.2s ease, margin-top 0.2s ease;
}

.tarot-deck-overlap li img {
  height: 220px;
  border-radius: 10px;
  border: #787c82 2px solid;
}

.tarot-deck-overlap li:hover {
  margin-top: 0;
}

/* Selected cards (with hidden back images) should be raised */
.tarot-deck-overlap li:has(img.card-oracle-image-hidden:first-child),
.tarot-deck-overlap li.card-selected {
  margin-top: -90px; /* Raise by about 50% of card height (110px) minus original top margin (20px) */
  z-index: 2; /* Slightly higher z-index but not blocking other cards */
  position: relative;
  pointer-events: none; /* Prevent blocking clicks on cards underneath */
}

/* Ensure images in selected cards are still clickable */
.tarot-deck-overlap li:has(img.card-oracle-image-hidden:first-child) img,
.tarot-deck-overlap li.card-selected img {
  pointer-events: auto;
}

@media only screen and (min-width: 769px) {
  .tarot-deck-overlap {
    min-height: 400px !important; /* Increased height for desktop to accommodate raised selected cards */
    padding-bottom: 140px; /* More padding for desktop */
  }

  .tarot-deck-overlap ul {
    width: 80%;
  }

  .tarot-deck-overlap li:hover {
    filter: brightness(50%);
    margin-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .tarot-deck-circle {
    --scale: clamp(60px, 10vw, 120px);
  }

  ul.tarot-spread-circle {
    min-width: 0;
    min-height: 0;
  }

  .tarot-deck-overlap ul {
    width: 90%;
  }

  .tarot-deck-overlap li {
    margin-inline-end: -60px;
  }

  .tarot-deck-overlap li img {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .tarot-deck-circle-container {
    min-height: 320px;
  }

  .tarot-deck-circle {
    --scale: clamp(50px, 8vw, 100px);
  }

  .tarot-deck-overlap {
    min-height: 320px !important;
    padding-bottom: 110px;
  }

  .tarot-deck-overlap ul {
    width: 100%;
    padding: 0 16px;
  }

  .tarot-deck-overlap li {
    margin-inline-end: -40px;
  }

  .tarot-deck-overlap li img {
    height: 180px;
  }
}

@media screen and (max-width: 600px) {
  .tarot-deck-circle {
    --scale: clamp(40px, 8vw, 80px);
  }

  .tarot-deck-overlap {
    padding-bottom: 80px;
  }

  .tarot-deck-overlap ul {
    gap: 12px;
    justify-content: center;
  }

  .tarot-deck-overlap li {
    margin-inline-end: -20px;
  }

  .tarot-deck-overlap li img {
    height: 160px;
  }
}

@media screen and (max-width: 480px) {
  .tarot-deck-overlap ul {
    gap: 16px;
    margin: 0;
    width: 100%;
  }

  .tarot-deck-overlap li {
    margin-inline-end: 0;
    flex: 1 1 120px;
    display: flex;
    justify-content: center;
  }

  .tarot-deck-overlap li img {
    height: 150px;
  }
}

.card-oracle-form-center {
  text-align: center;
}

.card-oracle-form-right {
  overflow: hidden;
}

.card-oracle-form-right input,
.card-oracle-form-right button {
  clear: both;
  float: right;
  margin: 8px 0;
}

.card-oracle-form-inline-center {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.card-oracle-form-inline-right {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}

.card-oracle-form-inline-left {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.card-oracle-form-inline-justified {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.card-oracle-form-inline-center form,
.card-oracle-form-inline-justified form,
.card-oracle-form-inline-left form,
.card-oracle-form-inline-right form {
  display: flex;
  margin-inline-end: 10px;
}

.card-oracle-form-inline-center button,
.card-oracle-form-inline-justified button,
.card-oracle-form-inline-left button,
.card-oracle-form-inline-right button {
  margin-inline-start: 10px;
}

/* Question and submit button grouped together */
.card-oracle-question-submit-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.card-oracle-question-submit-group input[type="text"] {
  max-width: 400px;
}

.card-oracle-question-submit-group #submitbuttondiv {
  margin: 0;
}

/* Stacked layout alignments for question-submit group */
.card-oracle-form-center .card-oracle-question-submit-group {
  justify-content: center;
}

.card-oracle-form-right .card-oracle-question-submit-group {
  justify-content: flex-end;
}

.card-oracle-form-left .card-oracle-question-submit-group {
  justify-content: flex-start;
}

.card-oracle-2-column-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.card-oracle-2-column-column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
  .card-oracle-2-column-row {
    flex-direction: column;
  }
}

.card-oracle-1-column-grid,
.card-oracle-2-column-grid {
  border-bottom: 2px solid black;
  display: grid;
  gap: 20px;
  grid-template-rows: auto;
  justify-items: center;
  padding-bottom: 40px;
}

.card-oracle-1-column-grid img,
.card-oracle-2-column-grid img {
  max-width: 200px;
}

.card-oracle-1-column-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.card-oracle-2-column-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "card-oracle-2-column-left card-oracle-2-column-right";
}

.card-oracle-2-column-left {
  grid-area: card-oracle-2-column-left;
}

.card-oracle-2-column-right {
  grid-area: card-oracle-2-column-right;
}

.card-oracle-table {
  border-collapse: collapse;
  margin: 10px 0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.card-oracle-table thead tr {
  background: #3582c4;
  color: #ffffff;
  text-align: start;
  padding-top: 20px;
  font-weight: 700;
}

.card-oracle-table th, td {
  padding: 12px 15px;
}

.card-oracle-table tbody tr {
  border-bottom: 1px solid #dddddd;  
}

.card-oracle-table tbody tr:nth-of-type(even) {
  background: #f3f3f3;
}

.card-oracle-table tbody tr:last-of-type {
  border-bottom: 2px solid #3582c4;
}

.card-oracle-three-layout-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  justify-items: center;
  gap: 20px;
}

.card-oracle-three-layout-1 {
  grid-template-areas: 
  "three-layout-card-1 three-layout-card-2 three-layout-card-3";
}

.card-oracle-three-layout-card-1 {
  grid-area: three-layout-card-1;
}

.card-oracle-three-layout-card-2 {
  grid-area: three-layout-card-2;
}

.card-oracle-three-layout-card-3 {
  grid-area: three-layout-card-3;
}
