body {
  font-family: Arial, sans-serif;
  background-color: #fafafa;
  color: #333;
  margin: 0;
  padding: 0px;
}

.panel-body {
  background-color: #fff;
  border-radius: 6px;
 
  

 
  margin: 20px auto;
  padding: 10px; /* Daha az padding */
  font-family: 'Arial', sans-serif;
  color: #333;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-width: 900px;
}

.bolum_baslik {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.teknik_grup {
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
.panel-body .bolum_baslik {
  font-size: 14px; /* Yazı tipi boyutunu küçült */
  font-weight: 600;
  margin-bottom: 8px; /* Daha az alt boşluk */
  color: #000;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.panel-body .teknik_grup .row {
  flex-basis: calc(50% - 20px); /* Kutucukların genişliğini azalt */
  margin-bottom: 8px; /* Daha az alt boşluk */
  z-index: 6;
}

.col-md-a4, .col-sm-14, .col-xs-21 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.checkbox {
  margin-bottom: 10px;
  
}

.checkbox label {
  display: block;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 16px;
  padding-left: 30px;
}
.panel-body .checkbox {
  position: relative;
  padding-left: 20px; /* İç boşluğu azalt */
}

.panel-body .checkbox label {
  cursor: pointer;
  color: #666;
  font-size: 14px; /* Yazı tipi boyutunu küçült */
  padding-bottom: 3px;
}

.checkbox input[type="checkbox"] {
  position: absolute;

  
}

.checkbox .ozellik:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 4px;
  background-color: #fff;
}

.checkbox input[type="checkbox"]:checked + .ozellik:before {
  background-color: #f90;
  border-color: #f90;
  
}

.checkbox .ozellik:after {
  content: '✔';
  display: none;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%) scale(0);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.checkbox input[type="checkbox"]:checked + .ozellik:after {
  display: inline-block;
  transform: translateY(-50%) scale(1);
}

/* Clearfix for .row */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
@media screen and (max-width: 390px) {
  .row {
    margin-right: -5px;
    margin-left: -15px;
  }
  
   .table {
    margin-right: 0;
    margin-left: 0;
  }
  table {
  table-layout: fixed;
}

th, td {
  width: 20%;
}
.table {
  width: 100%;
}
}
/* Responsive adjustments */
@media (min-width: 768px) {
  .col-md-a4 {
      flex: 0 0 25%;
      max-width: 25%;
  }
  .panel-body .teknik_grup .row {
    flex-basis: 100%; /* Mobil cihazlar için kutucukları genişlet */
  }
}

@media (min-width: 576px) {
  .col-sm-14 {
      flex: 0 0 50%;
      max-width: 50%;
  }
}
.checkbox-custom {
  display: none;
  margin-bottom: 8px;
}

.checkbox-custom + label {
  position: relative;
  padding-left: 30px; /* Checkbox ikonu için yer bırakın */
  cursor: pointer;
  padding-bottom: 10px;
  vertical-align: middle; /* Metni kutucuğun ortasına alır */
  line-height: 1.2;
}

.checkbox-custom + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 3px; /* Hafif yuvarlak köşeler */
 
}

.checkbox-custom:checked + label:before {
  background-color: #5cb85c; /* İşaretlendiğinde arka plan rengi */
  border-color: #5cb85c; /* İşaretlendiğinde kenarlık rengi */
}

.checkbox-custom:checked + label:after {
    content: '✔'; /* Tik işareti karakteri */
  position: absolute;
  /*top: 5;*/
  left: 4px;
  font-size: 18px;
  color: #fff;
  top: 50%; /* Yatay merkeze almak için */
  /* İşareti tam ortaya almak için gerekli olabilecek diğer ayarlamalar */
  transform: translate(-50%, -50%);

  
}

