*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.container{
    max-width:1170px;
    margin:auto;
}

.row{
    display: flex;
    flex-wrap:wrap;
}

ul{
    List-style: none;
    color: black;
}

p{
    color:black;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: white;
    font-family: 'Poppins', sans-serif;
}

.logo{
    color: black;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 28px;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 30%;
}
.nav-links li{
    list-style: none;
    color: black;
}
.nav-links a{
    color: black;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: 2000;
    font-size: 14px;
}

.nav-border {
    border-bottom: solid 1px rgb(54,78,74);
    margin-right: 15px;
    margin-left: 15px;
}

.footer{
    background-color: white;
    padding: 70px 0;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size:18px;
    color: black;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before{
    content: "";
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: red;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child){
    margin-bottom:10px;
}

.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: black;
    display: block;
    transition: all 0.3s ease;

}

.footer-col ul li a:hover{
    color: rgb(37,38,42);
    padding-left: 8px;
}

.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(99, 143, 139,0.2);
    margin:0 8px 8px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: rgb(54,78,74);
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover{
    color: rgb(99, 143, 139);
    background-color: rgb(54,78,74);
}

.footer-border {
    border-top: solid 1px rgb(54,78,74);
    border-bottom: solid 1px rgb(54,78,74);
    margin-right: 15px;
    margin-left: 15px;

}

a.side-bar-button {
    color:black;
    text-decoration-line: none;
    text-transform: uppercase;
}

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 2px 9px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: white;
  color: black;
  border: 2px solid #4CAF50;
  border-radius: 4px;
  padding: 5px 5px 3px 3px;
}

.button2 {
  background-color: white;
  color: black;
  border: 2px solid #4CAF50;
  border-radius: 4px;
  padding: 5px 5px 3px 3px;
}

.button3 {
  background-color: rgb(22,166,197);
  color: white;
  border: 2px solid  rgb(22,166,197);
  border-radius: 4px;
  padding: 5px 5px 3px 3px;
}

.button-danger {
  background-color: red;
  color: white;
  border: 2px solid red;
  border-radius: 4px;
  padding: 5px 5px 3px 3px;
}

.button-info {
  background-color: rgb(183,187,26);
  color: white;
  border: 2px solid rgb(183,187,26);
  border-radius: 4px;
  padding: 5px 5px 3px 3px;
}

.button1:hover {
  background-color: #4CAF50;
  color: white;
}

.button2:hover {
  background-color: #4CAF50;
  color: white;
}

.button3:hover {
  background-color: lightblue;
  border: 2px solid lightblue;
  color: black;
}

.button-danger:hover {
  background-color: rgb(255,36,36);
  border: 2px solid rgb(255,36,36);
  color: black;
}

.button-info:hover {
  background-color: rgb(119,208,11);
  border: 2px solid rgb(119,208,11);
  color: black;
}

input[type=search] {
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: white;
  background-image: url("");
  background-size: 15px 15px;
  background-position: 1px 1px;
  background-repeat: no-repeat;
  padding: 2px 2px 2px 20px;
}

table[type=dashboard] {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.main-header {
    width: 100%;
    height: 70px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    height: 50px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #007bff;
}

.main-header {
    display: flex;
    justify-content: space-between; /* Logo sol, linkler sağ */
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.logo-link {
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.nav-links-header a {
    margin-left: 25px;
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.nav-link a:hover {
    color: #0080ff;
}
.grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
        max-width: 920px;
        margin: auto;
    }

    .box {
        background: #fff;
        border-radius: 8px;
        padding: 10px;
        border: 1px solid #ccc;
        text-align: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        transition: transform 0.2s;
    }

    .box:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .title {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 6px;
    }

    .price {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 8px;
        color: #333;
    }

    .chart {
        width: 100%;
        height: 40px;
    }

    a {
        text-decoration: none;
        color: inherit;
    }
      .annual-table-container {
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow-x: auto; /* Mobilde yatay scroll */
    display: block;
}

.annual-table-container th,
.annual-table-container td {
    padding: 8px 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 14px;
}

.annual-table-container thead th {
    background: #222;
    color: #fff;
    font-weight: bold;
}

.annual-table-container thead tr:first-child th {
    font-size: 16px;
    padding: 10px;
}

.annual-table-container tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* Yıl ve değerler */
.annual-table-container td.year {
    font-weight: bold;
    background: #f2f2f2;
}

/* Pozitif ve negatif renkler */
.annual-table-container td.positive {
    color: #00a65a;
    font-weight: bold;
}

.annual-table-container td.negative {
    color: #d9534f;
    font-weight: bold;
}

/* Mobilde tablo kaydırma */
@media (max-width: 768px) {
    .annual-table-container th,
    .annual-table-container td {
        padding: 6px 8px;
        font-size: 12px;
    }

    .annual-table-container thead tr:first-child th {
        font-size: 14px;
        padding: 8px;
    }
}
.footer-country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 24px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

.footer-country-item {
    display: flex;
    align-items: center;
}

.footer-country-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    padding: 6px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.footer-country-item a:hover {
    background: #f4f4f4;
    color: #000;
}

/* Flag icons */
.countryicon-sprite {
    width: 20px;
    height: 14px;
    display: inline-block;
    background-size: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-country-grid {
        grid-template-columns: 1fr;
    }
}

.ad {
    width: 160px;              /* klasik adsense genişliği */
    min-height: 600px;
    margin-top: 20px;
    position: sticky;
    top: 20px;
}
.layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
/* Boşluk ayarı */
.ad-left {
    margin-right: 20px;
}

.ad-right {
    margin-left: 20px;
}

.small-h1 {
  font-size: 14px;   /* ihtiyaca göre 12–16px */
  font-weight: 500; /* çok kalın olmasın */
  margin: 0;
}
