
/* Redesigned grid-box container structure */

.FastResultsPattern .pattern-grid-box {
    border-bottom: 1px solid #e5484d;
    border-radius: 0;
    padding: 3px;
    height: 100%;
}

/* Conditional variant backgrounds matched directly from previous rules */
.FastResultsPattern .pattern-grid-box.accent-yellow {
  background-color: #ff0;
}

.FastResultsPattern .pattern-grid-box.base-peach {
  background-color: #ffcc99; /* White card layout interior cleanly highlights text onto the peach layer */
}

.FastResultsPattern .fast-results-table {
    width: 100%;
}

/* Title segment within individual cards */
.FastResultsPattern .box-market-title {
    color: #00094d;
    font-weight: 800;
    font-size: 22px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
        text-shadow: 1px 1px 2px #fff;
}
/* Micro live notification flag */
.FastResultsPattern .live-pill-indicator {
  background-color: #cc0000;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Giant focal center matrix display values */
.FastResultsPattern .box-numbers-display {
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    font-size: 22px;
    line-height: 1;
    background: -webkit-linear-gradient(#4500bf, #670009);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 5px 5px;
}

/* Time metadata rows styling */
.FastResultsPattern .time-badge {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 0;
    color: #000;
    text-shadow: 1px 1px 2px #ffd9d9;
}

.FastResultsPattern .time-arrow {
  font-size: 0.8rem;
  color: #800000;
  font-weight: bold;
}



/* Interior divider boundary */
.FastResultsPattern .border-top-divider {
  border-top: 1px dashed rgba(128, 0, 0, 0.2);
}

/* Standard button operational parameters */
.FastResultsPattern .action-btn {
    color: #fff;
    padding: 5px 7px;
    border-radius: 8px;
    font-size: 12px;
    margin: 0 0 0;
    transition: all .3s;
    text-shadow: 1px 1px 2px #222;
    border: 1px solid #e6e6e6;
    background: #522f92;
    margin: 0px 13px;
}


@media (min-width:0px) and (max-width:767px){
.FastResultsPattern .box-numbers-display {
    font-size: 15px;
}

.FastResultsPattern .box-market-title {
    font-size: 12px;
}

.FastResultsPattern .live-pill-indicator {
    font-size: 6px;
}

.FastResultsPattern .time-badge {
    font-size: 12px;
}

.FastResultsPattern .action-btn {
    font-size: 9px;
}
}