﻿body {
  background: #a4d2dd url(/img/world.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.app_container {
  /*margin-top: 110px;*/
  padding: 30px 0;
}

.app_nav {
  /*background:  url("/img/road.png") 100% 80px no-repeat fixed center;*/
  background: url(/img/road.png);
  background-position: center;
  background-size: auto 80px;
  background-repeat: repeat-x;
  /*margin-bottom: 75px;*/
}

.app_nav .col {
  padding-right: 5px;
  padding-left: 5px;
}

.app_nav_table {
  width: 100%;
  margin-top: 30px;
}

.app_nav_table td {
  width: 10%;
}

.app_nav_table td {
  width: 10%;
  text-align: center;
  vertical-align: top;
}

.app_nav_table td:first-child {
  width: 15%;
}

.app_nav_table td:last-child {
  width: 15%;
}

.app_nav_img {
  max-height: 60px;
  max-width: 60px;
  padding: 15px;
  /*margin-top: 20px;*/
}

.app_nav_table i {
  text-align: center;
  width: 100px;
  height: 100px;
  background-color: #67b8de;
  display: block;
}

.app_nav_lbl {
  text-align: center;
  color: #67b8de;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 14px;
}

.app_info {
  position: fixed;
  right: 0;
  top: 50%;
  cursor: pointer;
  z-index: 2000;
}

.app_info_btn {
  cursor: pointer;
}

.app_info_img {
  height: 100px;
}

.app_info_detail {
  padding: 50px;
  position: fixed;
  right: -50px;
  top: 30%;
  border: 40px solid #67b8de;
  border-radius: 50%;
  color: #fff;
  width: 500px;
  height: 500px;
  color: #fff !important;
  font-size: 12px;
  background-color: #88ceea;
  z-index: 2001;
}

.app_info_detail_close {
  font-size: 25px;
  color: white;
  position: absolute;
  left: 40px;
  top: 13px;
  padding: 5px;
  cursor: pointer;
}

.app_info_detail_close:hover {
  color: #fff;
}

.active_stage {
  background-color: #fbb03b;
}

.old_stage {
  background-color: #aeb6bd;
}

th {
  color: #67b8de;
}

.plane {
  width: 40px;
  position: absolute;
  margin-top: -25px;
}

.alert-info {
  background-color: #e8f1ed;
  color: #67b8de;
  border: none;
  /*font-size: 13px;*/
}

.credit_card {
  height: 100px;
  position: absolute;
  right: 30px;
  top: -15px;
}

#personAccordion .card {
  border: none;
  border-bottom: 1px solid #67b8de;
}

#personAccordion .card-header {
  /* border: none; */
  background-color: #eef4f5;
  /*border-radius: 20px 20px 0 0;*/
  border-bottom: 1px solid #67b8de;
}

#personAccordion .card-header a {
  display: block;
  cursor: pointer;
  color: #67b8de;
  font-weight: bold;
  text-align: center;
}

.data_control_title {
  color: #67b8de;
}

.doc_img {
  height: 200px;
}

.form_lbl {
  text-align: left;
  color: #67b8de;
  font-weight: bold;
}

.app_check_list {
  padding: 0;
}

/* Özel durum onay kutularını alt alta hizala */
.app_check_list li {
  display: block;
  margin-bottom: 10px;
}

.app_check_list .cb_container {
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 1.4;
}

.date_img {
  width: unset;
}

@media (max-width: 992px) {
  .app_nav_img {
    max-height: 40px;
    max-width: 40px;
    padding: 10px;
    /*margin-top: 20px;*/
  }

  .app_nav_lbl {
    position: absolute;
    font-size: 10px;
    transform: rotateZ(-45deg);
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .plane {
    width: 40px;
    position: absolute;
    margin-top: -25px;
  }

  .app_info_img {
    height: 60px;
  }

  .app_container_main {
    margin-top: 65px;
  }
}

@media (max-width: 768px) {
  .date_img {
    width: 100%;
  }
}

.subpage_title {
  text-align: center;
}

.subpage_title > label {
  font-size: 25px;
  color: #67b8de;
  font-weight: bold;
}

.title1 {
  font-size: 25px;
  font-weight: bold;
  color: #67b8de;
}

/* Tooltipların ilgili input yanında doğru hizalanması için */
.form-group .col-md-6,
.form-group .col-md-9 {
  position: relative;
}

.field-tooltip {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  min-width: 250px;
  background-color: #e8f1ed;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-left: 15px;
  z-index: 1000;
  font-size: 13px;
  line-height: 1.4;
  border: 1px solid #cce5df;
}

.field-tooltip:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e8f1ed transparent transparent;
}

/* Accordion içinde tooltip'in kesilmesini önlemek için */
#personAccordion .card,
#personAccordion .collapse.show,
#personAccordion .card-body {
  overflow: visible !important;
}

.field-tooltip-close {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  color: #666;
  font-size: 16px;
}

.info-btn {
  padding: 0 10px;
  color: #67b8de;
  background: transparent;
  border: none;
  font-size: 18px;
}

@media (max-width: 768px) {
  .field-tooltip {
    position: fixed;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    min-width: unset;
    margin-left: 0;
    z-index: 3000;
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5); /* Backdrop effect */
    padding: 20px;
    padding-top: 35px;
    text-align: center;
    border: 2px solid #67b8de;
  }

  .field-tooltip:before {
    display: none;
  }

  .field-tooltip-close {
    display: block;
  }
}

.photo-upload-container {
  text-align: center;
  padding: 15px;
  border: 2px dashed #67b8de;
  border-radius: 10px;
  background-color: #f8fbfe;
  transition: all 0.3s ease;
}

.photo-upload-container:hover {
  border-color: #fbb03b;
  background-color: #fefcf9;
}

.photo-preview {
  width: 150px;
  height: 200px;
  margin: 0 auto;
  border: 1px solid #ced4da;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #67b8de;
}

.photo-placeholder span {
  font-size: 12px;
  margin-top: 10px;
}
