@keyframes highlight {
  0% {
    background-color: rgba(255, 255, 0, 0.2);
  }
  100% {
    background-color: transparent;
  }
}
.highlight {
  animation: highlight 1s ease-out;
}
.numeric-value {
  position: relative;
}
.digit-normal {
  color: inherit;
}
.digit-increase {
  color: #06806b;
}
.digit-decrease {
  color: #cc2f3c;
}
.change-icon {
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.8;
}
.change-icon.increase {
  color: #06806b;
}
.change-icon.decrease {
  color: #cc2f3c;
}
@keyframes highlight {
  0% {
    background-color: rgba(255, 255, 0, 0.5);
  }
  100% {
    background-color: transparent;
  }
}
@keyframes value-increase {
  0% {
    background-color: rgba(39, 174, 96, 0.5);
  }
  100% {
    background-color: transparent;
  }
}
@keyframes value-decrease {
  0% {
    background-color: rgba(192, 57, 43, 0.5);
  }
  100% {
    background-color: transparent;
  }
}
.tabs {
  padding: 10px 20px;
  cursor: pointer;
  background: #eee;
  border: none;
  margin-right: 5px;
}
.tabs.active {
  background: #ddd;
}
.tab-container {
  position: relative;
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
}
.tab-container .tab-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tab-container .tab-content.active {
  position: relative;
  visibility: visible;
  opacity: 1;
}
/* Değişkenler */
.finance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #f2f2f2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.finance-table thead tr {
  height: 45px;
  background-color: #f5f5f5;
  color: #0f0f0f;
  font-weight: bold;
  font-size: 15px;
  border-bottom: 2px solid #6f909f;
}
.finance-table thead tr th {
  padding: 10px 15px;
  position: sticky;
  /* Sabit başlık için */
  top: 0;
  /* Pencerenin üstüne sabitle */
  background-color: #f5f5f5;
  /* Arka planın görünür kalması için */
  z-index: 10;
  /* Başlık, gövdenin üstünde kalsın */
  cursor: pointer;
  transition: background-color 0.2s;
}
.finance-table thead tr th.text-end {
  text-align: right;
}
.finance-table thead tr th:hover {
  background-color: #e8e8e8;
}
.finance-table thead tr th.yuzde {
  padding-right: 30px;
}
.finance-table thead tr th.yuzde:after {
  content: '(%)';
  font-size: 10px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.finance-table tbody tr {
  height: 40px;
  border-bottom: 1px solid #f2f2f2;
  transition: background-color 0.2s;
}
.finance-table tbody tr:hover {
  background-color: #f2f2f2;
}
.finance-table tbody tr.selected {
  background-color: #e3effd;
}
.finance-table tbody tr td {
  padding: 8px 15px;
  vertical-align: middle;
}
.finance-table tbody tr td.text-end {
  text-align: right;
}
.finance-table tbody tr td.row-start {
  line-height: 20px;
}
.finance-table tbody tr td.row-start div:nth-child(2) {
  font-size: 12px;
  color: #6f909f;
}
.finance-table tbody tr td.positive {
  color: #06806b;
}
.finance-table tbody tr td.negative {
  color: #cc2f3c;
}
.finance-table tbody tr td.high-value {
  color: #0f0f0f;
}
@keyframes highlight {
  0% {
    background-color: rgba(255, 255, 0, 0.5);
  }
  100% {
    background-color: transparent;
  }
}
.finance-table .highlight {
  animation: highlight 1s ease-out;
}
@media (max-width: 768px) {
  .finance-table {
    font-size: 13px;
  }
  .finance-table thead th,
  .finance-table tbody td {
    padding: 6px 10px;
  }
}
@media (max-width: 480px) {
  .finance-table {
    font-size: 12px;
  }
  .finance-table thead th,
  .finance-table tbody td {
    padding: 4px 6px;
  }
}
.finance-code {
  text-transform: uppercase;
}
.finance-name {
  color: #0f0f0f;
}
.trend-icon {
  margin-right: 3px;
  font-size: 12px;
}
.tooltip {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 1000;
  pointer-events: none;
}
.loading-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.loading-indicator .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #6f909f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.highlight {
  animation: highlight 1s ease-out;
}
.value-increase {
  animation: value-increase 1s ease-out;
  color: #06806b !important;
  position: relative;
}
.value-increase:after {
  content: '▲';
  font-size: 10px;
  position: absolute;
  top: 4px;
  right: 4px;
  color: #06806b;
}
.value-decrease {
  animation: value-decrease 1s ease-out;
  color: #cc2f3c !important;
  position: relative;
}
.value-decrease:after {
  content: '▼';
  font-size: 10px;
  position: absolute;
  top: 4px;
  right: 4px;
  color: #cc2f3c;
}
html,
body {
  min-height: 100%;
  position: relative;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, Trebuchet MS, Roboto, Ubuntu, sans-serif;
  font-feature-settings: "tnum" on, "lnum" on;
  font-weight: normal;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.25em;
  font-size: 32px;
  color: #000;
  text-transform: uppercase;
  user-select: none;
  transition: all 0.3s ease;
}
.dark .logo {
  color: #fff;
}
.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 8px rgba(234, 179, 8, 0.5);
  /* sarımsı parıltı efekti */
}
/*# sourceMappingURL=common.css.map */