/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html,
  body {
    height: 100%;
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  body {
    font-family: Arial, sans-serif;
    background: #f3f4f6;
    color: #000;
    line-height: 1.6;
  }
  html {
    scroll-behavior: smooth;
  }
  
  /* Header */
.header {
  background-color: #fff;
  height: 80px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  justify-content: space-between;
  z-index: 1000;
}

main {
  margin-top: 100px;
  height: calc(100vh - 80px);
  overflow-y: visible;
}

/* Container */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

/* Logo */
.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 & Dropdown */
.account-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #8550d9;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}
.account-icon:hover {
  background: #0ebedd;
  border-color: #0ebedd;
  box-shadow: 0 4px 8px rgba(14, 190, 221, 0.5);
}
.account-icon i {
  color: #8550d9;
  font-size: 20px;
  transition: 0.2s;
}
.account-icon:hover i {
  color: #fff;
}

/* 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;
}
  
  
  /* Meeting Form */
  .meeting-form {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Başlık satırı */
  .meeting-form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Başlık */
  .meeting-form-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
  }
  
  /* Terms Content */
  .terms-content {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .terms-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin: 1.5rem 0 0.5rem;
  }
  
  .terms-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #444;
    margin: 1rem 0 0.5rem;
  }
  
  .terms-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .terms-content strong {
    font-weight: bold;
    color: #333;
  }
  
  .terms-content a.terms-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .terms-content a.terms-link:hover {
    color: #0ebedd;
    text-decoration: underline;
  }
  
  /* Footer */
  .meet-footer {
    max-width: 700px;
    margin: 2rem auto 1rem auto;
    padding: 0 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.4;
  }
  
  .footer-copy {
    font-size: 0.75rem;
    color: #777;
    margin-top: 0.5rem;
  }


  .page-transition {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  @keyframes pageTransition {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  