

h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

/* Üst Menü */
.header {
  background-color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-kontainer {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 40px;
  margin-right: 10px;
}

.logo-metin h1 {
  font-size: 20px;
}

.logo-metin p {
  font-size: 12px;
  color: gray;
}

.account-icon {
  margin-left: auto;
  cursor: pointer;
  border: 1px solid #8550d9;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.account-icon:hover {
  background-color: #0ebedd;
  border-color: #0ebedd;
  box-shadow: 0 4px 10px rgba(14, 190, 221, 0.5);
}

.account-icon i {
  color: #8550d9;
  font-size: 20px;
}

.account-icon:hover i {
  color: white;
}

.account-dropdown {
  position: absolute;
  top: 80px;
  right: 30px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 200px;
  display: none;
  z-index: 200;
}

.account-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.account-dropdown li {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.account-dropdown li:hover {
  background-color: #f0f0f0;
  color: #0ebedd;
}

/* Sekme Başlıkları */
.plan-toggle {
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  border-bottom: 2px solid #ccc;
}

.tab {
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background-color: transparent;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  font-size: 16px;
}

.tab.active {
  border-bottom: 3px solid #8550d9;
  color: #8550d9;
}

/* Reset and Base Styles */
@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow:hidden; /* Sayfa taşmasını engelle */
  opacity: 1;
  transition: opacity 0.4s ease;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  background-color: #f3f4f6; /* Açık gri arka plan */
}

html {
  scroll-behavior: smooth;
}

.container {
  justify-content: space-between;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #fff;
  height: 80px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: relative; /* important! */
  width: 100%;
  top: 0;
  justify-content: space-between;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  padding: 0 30px;
  width: 100%;
  box-sizing: border-box;
}

.logo-kontainer {
  display: flex;
  align-items: center;
  text-decoration: none;  /* alt çizgi yok */
  color: inherit;         /* ebeveynin rengini miras alır */
}

.logo {
  width: 40px;
  height: auto;
  margin-right: 10px; /* Logo ile yazı arasında boşluk */
}

.logo-metin {
  display: flex;
  flex-direction: column;
}

.logo-metin h1 {
  font-size: 20px; /* Başlık boyutu */
  margin: 0;
}

.logo-metin p {
  font-size: 12px; /* Alt yazı boyutu */
  margin: 0;
  color: gray; /* İstersen yazı rengi */
}

/* Hesap İkonu Stili */
.account-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #8550d9; /* Logo rengi */
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.account-icon i {
  font-size: 20px;
  color: #8550d9; /* Logo rengi */
  transition: color 0.3s ease;
}

.account-icon i:hover {
  font-size: 20px;
  color: white; /* Logo rengi */
}

.account-icon:hover {
  background-color: #0ebedd;
  transform: scale(1.1);
  border: 1px solid #0ebedd; /* Logo rengi */
  box-shadow: 0 4px 10px rgba(14, 190, 221, 0.5);
}

.account-icon:active {
  transform: scale(0.95);
  box-shadow: 0 2px 5px rgba(14, 190, 221, 0.7);
}

.account-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Hesap Dropdown Stili */
.account-dropdown {
  position: absolute;
  top: 100%;
  right: 30px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 200px;
  display: none;
  z-index: 1001;
}

.account-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Dropdown içindeki linkleri düz stil yapmak için */
.account-dropdown ul a {
  display: block;         /* tüm li’yi kapsasın */
  text-decoration: none;  /* alt çizgi kaldır */
  color: inherit;         /* li’lerin rengiyle aynı olsun */
}

/* Eğer hover’da bile renk değiştirmesin istersen: */
.account-dropdown ul a:hover {
  color: inherit;
  background-color: #f0f0f0; /* veya istediğiniz hover arka planı */
}

.account-dropdown ul li {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

.account-dropdown ul li:hover {
  background-color: #f0f0f0;
  color: #0ebedd;
}


.grid-container {
        display: grid;
        grid-template-rows: 100fr;
        grid-template-columns: 100fr;
        gap: 10px;
        width: 100%;
        max-height: 100%;
        height: calc(100% - 80px); /* Header yüksekliği kadar çıkar */
        padding: 10px;
      }
  
      .kullanici-kutu {
        background-color: #fff;
        grid-column: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch; /* genişliği %100 yapar */
        justify-content: flex-start;  /* üstte hizalanır */
        grid-row: 1;
        margin-top: 0;
        border-radius: 20px;
        box-shadow: 0 4px 12px hsla(49, 89%, 48%, 0.5);
        padding: 0; /* padding içerideki alanı etkiler */
      }


      .plan-toggle {
        display: flex;
        justify-content: center;
        padding: 20px 0;
        border-bottom: 2px solid #4b4b4b;
        position: relative; /* üstte sabit kalması için */
        top: 0;
        gap: 10px;
        z-index: 10;
        background-color: #fff;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
      }
  
  .tab {
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-bottom: 3px solid transparent;
    background-color: transparent;
    transition: all 0.5s;
    font-size: 22px;
    color: #4b4b4b;
  }
  
  .tab.active {
    border-bottom: 3px solid #509bd9;
    color: #8550d9;
  }

  .tab-icerik-wrapper {
    flex: 1; /* kalan alanı kapla */
    overflow-y: auto;
    padding: 20px;
  }
  
  .tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .tab-content.active {
    display: block;
    opacity: 1;
  }
  




  
  .plan-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .plan-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
  }
  
  .plan-description {
    font-size: 22px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
  }
  

  /* Planlar Alanı */
.pricing-section {
    padding: 40px 20px;
  }
  
  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .card {
    background-color: white;
    position: relative; /* Butonun konumlanması için */
    border-radius: 12px;
    padding: 20px;
    padding-bottom: 60px; /* Butona yer bırak */
    width: 300px;
    max-height: 400px;
    text-align: center;
    transition: transform 0.5s;
  }
  
  .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);

  }
  
  .card h3 {
    margin-bottom: 10px;
  }
  
  .card .price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .card .price2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
  }
  
  .card .price span {
    font-size: 13px;
    color: rgb(27, 27, 27);
  }
  
  .card .price2 span {
    font-size: 13px;
    color: rgb(255, 255, 255);
  }

  .card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
  }

  .card ul li {
    margin: 10px 0;
    text-align: left;
  }

  .card button {
    background-color: #0ebedd;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }

  .card button:hover {
    background-color: transparent;
    font-weight: bold;
    color: #333; 
    border: 1px solid #fff; /* Butonun kenar rengi */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;

  }
  .card.free button:hover{
    color: #333;
    box-shadow: 0 4px 10px rgb(51, 51, 51, 0.5);
    border: 1px solid #333; /* Butonun kenar rengi */


  }

  .card.standard button:hover{
    color: white;
  }
  .card.premium button:hover{
    color: white;
  }

  .card.corporate button:hover{
    color: white;
  }

  
  
  .card.free {
    border: 1px solid #E5E7EB; /* Gri kenar */
    background-color: #F3F4F6;  /* Açık gri arka plan */
    color: #4B5563;
  }
  
  .card.standard {
    background-color: #3B82F6;
    border: 1px solid #2563EB; /* Gri kenar */
    color: #fff;

  }
  
  .card.premium {
    background-color: #1E3A8A;
    color: #fff;
    border: 1px solid #1E40AF; /* Gri kenar */
  }
  
  .card.corporate {
    background-color: #6B21A8;
    border: 1px solid #5B21A8; /* Gri kenar */
    color: #fff;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  

  main {
    padding-top: 10px; /* Sadece 10px boşluk bırak */
    overflow-y: auto;
    height: calc(100vh - 80px);
  }


  /* Tab içerik görünürlüğü */
  .tab-content { display: none; opacity: 0; transition: opacity .3s ease; }
  .tab-content.active { display: block; opacity: 1; }

  /* Billing başlığı */
  .billing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
  }

  /* Filtre alanları */
  .billing-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  .filter-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
  }
/* Filtre kutularına hover ve focus efekti */
.filter-item input,
.filter-item select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-item input:hover,
.filter-item select:hover,
.filter-item input:focus,
.filter-item select:focus {
  border-color: #8550d9;
  box-shadow: 0 0 0 3px rgba(133, 80, 217, 0.2);
  outline: none;
}

  .filter-item label {
    margin-bottom: .25rem;
    font-weight: 500;
  }
  .filter-item input,
  .filter-item select {
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: .9rem;
  }

  /* Fatura tablosu */
  .billing-table {
    width: 100%;
    border-collapse: collapse;
  }
  .billing-table th,
  .billing-table td {
    padding: .75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
  }
  .billing-table th {
    font-weight: 600;
    color: #555;
  }
  .billing-table tbody tr:hover {
    background: #fafafa;
  }

  .billing-table .icon {
    color: #f3c623;
    margin-right: .5rem;
  }
  .invoice-id {
    color: #0EBEDD;
    font-size: .8rem;
  }
  .badge {
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 12px;
    font-size: .8rem;
    color: #fff;
  }
  .badge-paid { background-color: #4caf50; }
  .badge-cancelled { background-color: #1976d2; }
  .link {
    color: #7f39fb;
    text-decoration: none;
    font-weight: 500;
  }
  .link:hover { text-decoration: underline; }


  .link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(127, 57, 251, 0.2);
  }
  .link:active {
    color: #5e35b1;
    box-shadow: 0 0 0 3px rgba(94, 53, 177, 0.2);
  }

  
  .page-transition {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  @keyframes pageTransition {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  


.toastify {
  z-index: 10000 !important; /* overlayView'dan yüksek */
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 20px 20px;
  border-radius: 15px;
}