.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* === GWADAR LIVE MARKET TABLE (FOREX STYLE) === */

/* Table container styling */
.flex-table-container {
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Table headings */
.flex-table-container th {
  background: #111;
  color: #00ffcc;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px;
  text-align: center;
}

/* Table rows */
.flex-table-container td {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 255, 204, 0.15);
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* Price Up & Down Animation */
@keyframes priceUp {
  0% { background-color: rgba(0,255,0,0.3); }
  100% { background-color: transparent; }
}
@keyframes priceDown {
  0% { background-color: rgba(255,0,0,0.3); }
  100% { background-color: transparent; }
}

/* Change column — green ▲ red ▼ */
.flex-table-container td:last-child {
  font-weight: bold;
}
.flex-table-container td:last-child:contains("▲"),
.flex-table-container td:nth-child(2):contains("▲") {
  color: #00ff00;
  animation: priceUp 1s ease;
}
.flex-table-container td:last-child:contains("▼"),
.flex-table-container td:nth-child(2):contains("▼") {
  color: #ff3333;
  animation: priceDown 1s ease;
}

/* Hover glow */
.flex-table-container tr:hover {
  background: rgba(0,255,204,0.05);
  transition: 0.3s;
}

/* Responsive view */
@media (max-width: 768px) {
  .flex-table-container th, .flex-table-container td {
    font-size: 12px;
    padding: 6px;
  }
}/* End custom CSS */