.pageTitle {
  width: 100%;
  background-color: #f7f7f7;
  padding: 2em 0;
}

.pageTitle h2 {
  color: #00307e;
  font-weight: bold;
  margin: 20px 0;
  font-size: 1.5rem;
}

.contentInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Margin Top değişecek. Geçici resimler için düzenlendi. */
.contentInfo img {
  max-width: 50%;
  margin-top: -5rem;
  z-index: -1;
}

.contentInfo .tableWrapper {
  width: 100%;
  max-width: 500px;
  margin-bottom: 5rem;
}

.contentInfo table {
  border-collapse: separate;
  border-spacing: 2px;
  padding: 5px 0;
  width: 100%;
}

.contentInfo table td {
  border-bottom: 1px solid #00a1bc;
  border-top: 0;
  padding: 0.75rem;
  padding-left: 0;
  vertical-align: top;
}

table .rowName {
  width: 30%;
  color: #00a1bc;
  font-weight: bolder;
}

.contentButtons {
  width: 100%;
  display: flex;
  margin-top: 30px;
  gap: 10px;
}

.contentButtons svg {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  fill: #00a1bc;
  transition: fill 0.3s ease-in-out;
  margin-bottom: 2px;
}

.contentButtons a {
  font-size: 13px;
  padding: 5px 15px;
  color: #00a1bc;
  border: 2px solid #00a1bc;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
}

.contentButtons a:hover {
  background-color: #00a1bc;
  color: #fff;
}

.contentButtons a:hover svg {
  fill: #fff;
}

@media (max-width: 840px) {
  .contentInfo {
    flex-direction: column-reverse;
  }
  .contentInfo img {
    max-width: 80%;
  }
  .contentInfo .tableWrapper {
    margin-bottom: 2rem;
  }
  .contentButtons {
    flex-direction: column;
  }
  .contentButtons a {
    width: 100%;
  }
}
