#form-container {
  margin-bottom: 50px;
  margin-top: 50px;
  padding-right: 10%;
  padding-left: 10%;
}

#form-col-1 {
  padding: 2%;
  box-shadow: 0px 0px 107.8px 0px #15203714;

}

#form-col-2 {
  display: flex;
  flex-direction: column;
  row-gap: 2%;
}

#gonder-btn {
  width: 100%;
  height: 15%;
  border: 0;
  color: #000;
  background-color: #FDB827;
  transition: .4s;
}

#gonder-btn:hover {
  border: 1px solid #FDB827;
  background: transparent !important;
  transition: .4s;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
}

td:hover {
  background-color: #F2F3F7;
}

td:focus {
  background-color: #FDB827;
}

th {
  background-color: #f2f2f2;
}

.today {
  background-color: #FDB827;
}

.today:hover {
  background-color: #FDB827;
}

.prev-month, .next-month {
  color: #ccc;
  background-color: #F2F3F7;

}

h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  cursor: pointer;
}

.arrow:focus {
  color: #F2F3F7;
}


/* saat */
.saat-secimi {
  padding: 5%;
  height: 83%;
  box-shadow: 0px 0px 107.8px 0px #15203714;
}


.saat-butonu {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 20px;
  margin-right: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  height: fit-content;
}

.saat-butonu.dolu {
  background-color: #E9EAEA;
  cursor: not-allowed;
}

.saat-butonu:hover:not(.dolu) {
  background-color: #f0f0f0;
}


/* alert */
#alertKutusu {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.alertIcerik {
  background-color: #fff;
  padding: 2%;
  border-radius: 5px;
  text-align: center;
  position: relative;
  width: 550px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alertIcerik>button {
  background-color: #FDB827;
  color: #000;
  border: 0;
  width: 50%;
  height: 40px;
  margin-top: 30px;
  transition: .4s;
}

.alertIcerik>button:hover {
  border: 1px solid #FDB827;
  background: transparent !important;
  transition: .4s;
}



.kapatButonu {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;


}



/*HEADER*/


.navbar {
  background-color: #333;
  padding: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.navbar li {
  display: inline;
  margin-right: 20px;
}

.navbar a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.custom-button {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #FDB827;
  text-decoration: none;
  /* Remove underline */
  color: black;
  /* Set text color to black */
  border: none;
  /* Remove border */
  cursor: pointer;
}


/*sayfa içi*/




.img {

  width: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}




/*GRİ CONTAİNER*/
.grey-container {

  margin-top: 80px;
  position: relative;
  background: #F4F8FB;
  flex-shrink: 0;

}

.grey-container h1 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  color: var(--Neutrals-700, #344054);
  font-kerning: none;
  font-variant-numeric: slashed-zero;
  font-feature-settings: 'ss01'on, 'cv02'on;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.grey-container p {
  padding-bottom: 2rem;
  text-align: center;
  color: var(--Neutrals-500, #707B93);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}


@media only screen and (max-width:991px) {
  #form-col-2 {
    padding: 0;
  }

  th, td {
    padding: 2px;
  }

  #gonder-btn {
    height: 50px;
  }
}

/* =========================================
   DİĞER SAYFALAR MASAÜSTÜ NAVBAR
========================================= */

.inner-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Logo */
.inner-navbar .navbar-brand img {
  max-height: 55px;
  width: auto;
}

/* Menü linkleri */
.inner-navbar .nav-link {
  color: #000 !important;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover */
.inner-navbar .nav-link:hover {
  color: #FCC737 !important;
}

/* Aktif sayfa */
.inner-navbar .nav-link.active {
  color: #000 !important;
  font-weight: 700;
}

/* Menü aralıkları */
.inner-navbar .navbar-nav {
  gap: 10px;
}


/* =========================================
   MOBİL HEADER
========================================= */

.mobile-menu-btn {
  font-size: 30px;
  cursor: pointer;
  color: #000;
  line-height: 1;
}


/* =========================================
   RESPONSIVE
========================================= */

/* Masaüstünde mobil navbar gizle */
@media (min-width: 992px) {

  .mobile-navbar {
    display: none;
  }

}


/* Mobilde masaüstü navbar gizle */
@media (max-width: 991px) {

  .inner-navbar {
    display: none;
  }

  .mobile-navbar {
    display: block;
  }

}