
  
  /* Yeni Eklenen Proje Özet Kartı */
  .project-summary {
    background: #fff;
    border-left: 5px solid #203455;
    padding: 20px;
    margin-bottom: 35px;
    border-radius: 4px 8px 8px 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  .summary-item {
    margin-bottom: 12px;
  }
  .summary-item:last-child {
    margin-bottom: 0;
  }
  .summary-label {
    font-weight: bold;
    color: #2c3e50;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }
  .summary-value {
    font-size: 16px;
    color: #4a5568;
  }

  /* Tablo Tasarımları */
  .table-container {
    width: 100%;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  .table-title {
    background-color:#203455;
    color: #fff;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }
  th, td {
    padding: 12px 15px;
    border-bottom: 1px solid #edf2f7;
    vertical-align: top;
  }
  th {
    background-color: #f7fafc;
    color: #4a5568;
    font-weight: 600;
    width: 35%;
  }
  tr:last-child td {
    border-bottom: none;
  }
  .total-row {
    background-color: #edf2f7;
    font-weight: bold;
  }
  
  /* Mobil Ekranlar İçin Uyumluluk Ayarı */
  @media screen and (max-width: 600px) {
    table, thead, tbody, th, td, tr {
      display: block;
    }
    th {
      width: 100%;
      background-color: #edf2f7;
      padding-bottom: 5px;
      box-sizing: border-box;
    }
    td {
      width: 100%;
      padding-top: 5px;
      padding-bottom: 15px;
      box-sizing: border-box;
    }
  }
.sprtr {border:solid 1px #2034552b;margin: 30px 0;}