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

html, body {
    color: #4d5156;
    background-color: #f2f2f2;
    font-family:  Arial, sans-serif;
    letter-spacing: 0.2px;
    font-size: 14px;
    line-height: 1.58;
    border-style: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

a {
    color: #1a0dab;
    letter-spacing: 0.2px;
    line-height: 1.58;
    text-decoration: none;
}

a:hover {
    color: #660099;
    text-decoration: underline;
}

/*------------------------------------------------------Container*/

.container {
    position: relative;
    width:100%;
    max-width:720px;
    box-sizing:border-box;
    margin: 0 auto;
    flex: 1 0 auto;
}

/*------------------------------------------------------Header*/

header { border-bottom: solid 1px #000; }

/*------------------------------------------------------Logo*/

.logo {
    font: 36px 'Reem Kufi', sans-serif;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.logo:hover { color: #660099; text-decoration: none; }

/*------------------------------------------------------Search Box*/

.search-box { float: right; margin-top: 10px; padding: 3px 0; }

.search-box input[type=text] { padding: 6px 10px; border:1px solid #000; border-radius: 3px; }

/*------------------------------------------------------Rated Box*/

/*------------------------------------------------------Rated Box*/

.rating {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Dikeyde hizalama */
    height: 50px; /* Yükseklik */          
  }
  
  .ratingLeft {    
    padding: 10px;
    flex: 3; /* Left alanını büyütmek için oranlı genişlik */
    min-width: 200px; /* Sağlam bir minimum genişlik belirleyin */
  }
  
  .pointBox {
    float: right;    
    padding: 8px;
    border-radius: 10px;  
    margin-top: 2px;   
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  } 

  [data-score="10"] { background-color: #00b300; color: white; } /* Yeşil */
  [data-score="9"]  { background-color: #33cc33; color: white; }
  [data-score="8"]  { background-color: #66ff66; color: black; }
  [data-score="7"]  { background-color: #99ff99; color: black; }
  [data-score="6"]  { background-color: #ccffcc; color: black; }
  [data-score="5"]  { background-color: #ffff99; color: black; } /* Sarımsı geçiş */
  [data-score="4"]  { background-color: #ffcc66; color: black; }
  [data-score="3"]  { background-color: #ff9966; color: white; }
  [data-score="2"]  { background-color: #ff6666; color: white; }
  [data-score="1"]  { background-color: #ff3333; color: white; }
  [data-score="0"]  { background-color: #ff0000; color: white; } /* Kırmızı */

  .pointUser {
    line-height: 16px;
    margin-top: 6px;              
  }

  .pointUserLabel {
    color: #959b9e;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;    
  }  

  .ratingRight {    
    padding: 10px 0;
    flex: 1; /* Sağ alanı küçük tutmak için oranlı genişlik */
    min-width: 100px; /* Sağ için minimum genişlik */
  }
  
  /* Oy sayısı başlığı */
  div > b {
    font-weight: bold;
    display: block; /* Altına boşluk ekler */
    margin-bottom: 10px;
  }
  
  /* input-group için düzenleme */
  .input-group {
    display: flex;
    align-items: center; /* Dikeyde hizalamayı sağlar */
    gap: 0px; /* Elemanlar arasındaki mesafeyi ayarlar */
  }
  
  /* select kutusu için stil */
  .input-group select {
    padding: 4px 8px;
    font-size: 16px;
    border: 1px solid #ccc;
  }
  
  /* Button için stil */
  .ratedButton {
    margin-top: 5px;
    padding: 2px 4px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 16px; 
  }
  
  .ratedButton:hover {
    background-color: #45a049;
    border: none;
  }
  
  /* .whiteBox ve .socialBox varsayılan stiller */
  .whiteBox {
    background: #fff;
    padding: 5px 8px;
    border: 1px solid #000;
    border-radius: 3px;
  }
  
  .socialBox li {
    position: relative;
    break-inside: avoid-column;
    margin-bottom: 10px;
    list-style-type: none;
    background-color: #fff;
    border-bottom: 1px solid #ddd !important;
    padding: 6px 12px;
    border-top: 0;
  }

/*------------------------------------------------------Footer*/

footer {
    padding: 2.5rem 0;
    color: #fff;
    text-align: center;
    background-color: #000;
}

footer a {
    color: #fff;
    margin: 3px;
    padding: 5px 2px 2px 3px;
    border-bottom: solid 1px #fff;
}

footer a:hover {
    color: #fff;
    border-bottom: 0;
    text-decoration: none;
}

footer p {
    padding: 10px 0;
}

/* latin */
@font-face {
    font-family: 'Reem Kufi';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/reemkufi/v10/2sDcZGJLip7W2J7v7wQzaGW5.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}