:root {
  --gadr-primary-green: #00975f;
  --gadr-bg-light: #e1e1e1;
  --gadr-text-gray: #4b4b4b;
  --gadr-text-gray-hover: #191919;
  --gadr-hover-green: #00975f;
  --gadr-focus-green: #00975f;
  --gadr-active-green: #228b22;
  --gadr-box-shadow-light: 0 2px 16px 0 rgba(0, 0, 0, 0.06);
  --gadr-box-shadow-focus: 0 0 0 0.25rem rgba(64, 197, 2, 0.25);
}

body {
  font-family: Montserrat, serif;
}

/* Containers */
.gadr-container-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
}

.gadr-container-sm {
  display: flex;
  max-width: 540px;
}

/*-------------------------*/

/* Fonts */
.gadr-text-xxsm {
  color: var(--gadr-text-gray);
  font-size: 12px;
  font-weight: 600;
}

.gadr-text-xsm {
  color: var(--gadr-text-gray);
  font-size: 14px;
  font-weight: 600;
}

.gadr-text-sm {
  color: var(--gadr-text-gray);
  font-size: 16px;
  font-weight: 600;
}

.gadr-text-md {
  color: var(--gadr-text-gray);
  font-size: 20px;
  font-weight: 600;
}

.gadr-text-lg {
  color: var(--gadr-text-gray);
  font-size: 32px;
  font-weight: 600;
}

.gadr-a-blank {
  text-decoration: none;
}

.gadr-logo {
  color: var(--gadr-primary-green);
  font-size: 128px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  margin: 60px 0;
}

/*-------------------------*/

.gadr-navbar-brand {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gadr-primary-green) !important;
}

.gadr-dropdown-menu {
  background: var(--gadr-bg-light) !important;
  border-radius: 12px;
  z-index: 99999;
}

.gadr-dropdown-item {
  display: flex;
  flex-shrink: 1;
  margin: 10px 30px 10px 30px;
  padding: 0.25rem 1rem;
  white-space: nowrap;
  text-decoration: underline;
  background-color: transparent;
  clear: both;
}

.gadr-dropdown-item:hover,
.gadr-dropdown-item:focus {
  color: var(--gadr-text-gray-hover);
}

.gadr-dropdown-item.active,
.gadr-dropdown-item:active {
  text-decoration: none;
  color: var(--gadr-primary-green);
}

.gadr-form-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Button */
.gadr-button {
  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  background-color: var(--gadr-primary-green);
  color: #fff;
}

.gadr-button:hover {
  background-color: var(--gadr-hover-green);
}

.gadr-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--gadr-focus-green);
}

.gadr-button:active {
  background-color: var(--gadr-active-green);
}

.gadr-button:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.5;
}

.gadr-dropdown-button {
  transform: translateY(50%) translateY(8px);
}

/*-------------------------*/

.gadr-textInput-form {
  padding: 20px 0 19px 16px;
  border: none;
  outline: none;
  border-radius: 12px;
  background: var(--gadr-bg-light);
  box-shadow: var(--gadr-box-shadow-light);
  width: 100%;
  font-size: 20px;
}

.gadr-textInput-form:focus {
  box-shadow: var(--gadr-box-shadow-focus);
}

/* Address suggestion input */
.gadr-home-container-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 8rem;
}

.twitter-typeahead {
  width: 100%;
}

.typeahead-input {
}

.typeahead-hint {
  color: #999;
}

.typeahead-menu {
  color: #999;
  background: #f0f0f0;
  border-top: none;
  border-radius: 10px 12px 12px 12px;
  width: 100%;
  margin: 6px 0;
}

.typeahead-suggestion {
  padding: 10px 20px;
  font-size: 18px;
  line-height: 24px;
  color: black;
}

.typeahead-suggestion.typeahead-cursor,
.typeahead-suggestion:hover {
  background-color: #5ac823;
  color: white;
  cursor: pointer;
}

.typeahead-empty {
  padding: 10px 20px;
  font-size: 18px;
  line-height: 24px;
  color: black;
}

.typeahead-spinner {
}

.typeahead-empty-message {
  padding: 10px 20px;
}

/*-------------------------*/

.gadr-container-form-login {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  flex: 1;
}

.gadr-check-box {
}

.gadr-check-box:focus {
  box-shadow: var(--gadr-box-shadow-focus);
}

.gadr-check-box:checked {
  background-color: var(--gadr-primary-green);
}

.gadr-nav-tabs {
  border: none;
}

.gadr-nav-item {
  margin: 0 5px;
}

.gadr-nav-link {
  background-color: #d9d9d9 !important;
  border: none;
  color: #fff;
  font-size: 24px;
}

.gadr-nav-link:hover,
.gadr-nav-link:focus {
  background-color: var(--gadr-hover-green) !important;
  color: #fff;
}

.gadr-nav-link.active {
  background-color: var(--gadr-primary-green) !important;
  color: #fff !important;
}

.gadr-tab-pane {
  display: flex;
  border: dashed 1px var(--gadr-primary-green);
  border-radius: 8px;
  padding: 20px;
}

.gadr-container-tab-register {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.gadr-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 5rem;
}

.gadr-card {
  width: 20rem;
  margin-bottom: 3rem;
  box-shadow: var(--gadr-box-shadow-light);
}

.gadr-floating-button {
  color: var(--gadr-primary-green);
}

.gadr-floating-button:hover {
  color: var(--gadr-hover-green);
  cursor: pointer;
}

.gadr-floating-button:focus {
  color: var(--gadr-focus-green);
}

.gadr-floating-button:active {
  color: var(--gadr-active-green);
}

.gadr-card-remove-button {
  position: absolute;
  top: 2px;
  right: 2px;
  padding: 4px;
  border: none;
}

.gadr-shadow-cover {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 1000; /* high z-index to ensure it covers everything below it */
}

.gadr-result-container {
  display: flex;
  flex-direction: column;
}

.gadr-result-1-container {
  display: flex;
  flex-direction: column;
}

.gadr-result-1-top-container {
  display: flex;
  flex-direction: row;
  flex: 1;
}

.gadr-result-1-top-left-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gadr-result-1-top-left-top {
  display: flex;
  flex-direction: row;
  flex: 1;
}

.gadr-result-1-top-left-left-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gadr-result-1-top-left-right-container {
  display: flex;
  flex-direction: column;
  flex: 2;
  /*align-items: last baseline;*/
}

.gadr-result-2-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gadr-result-2-top-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem 4rem;
}

.gadr-result-2-down-container {
  display: none;
  flex-direction: column;
  flex: 1;
  align-items: center;
}

.gadr-result-input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 4px;
}

.gadr-result-input-label {
  display: flex;
  width: 100px;
  margin: 0 8px 0 8px;
}

.gadr-result-input-label-large {
  display: flex;
  width: 200px;
  margin: 0 8px 0 8px;
}

.gadr-result-input {
  padding: 8px 0 8px 0;
  border: none;
  outline: none;
  border-radius: 12px;
  background: var(--gadr-bg-light);
  box-shadow: var(--gadr-box-shadow-light);
  width: 70px;
  text-align: center;
}

.gadr-result-input:focus {
  box-shadow: var(--gadr-box-shadow-focus);
}

.gadr-result-1-down {
  display: flex;
  flex-direction: row;
  flex: 1;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

#myChart {
  flex: 1 !important;
  height: auto !important;
  max-height: 300px !important;
}

.gadr-result-not-logged {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-top: 10rem;
}

.gadr-post-card-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin: 1rem;
  padding: 1rem;
}

.gadr-post-card-container:hover {
  background-color: #f5f5f5;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gadr-post-card-container:focus {
  box-shadow: var(--gadr-box-shadow-focus);

  /* Ensure the div can receive focus */
  outline: none;
}

.gadr-post-card-container:active {
  transform: translateY(1px);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
}

.gadr-post-card-top-container {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: baseline;
  justify-content: start;
  width: 100%;
  gap: 6px;
}

.gadr-post-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin: 1rem 0;
  padding: 1rem;
  position: relative;
}

.gadr-post-top-container {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: start;
  width: 100%;
  gap: 6px;
  border-bottom: #00000050 1px solid;
  margin-bottom: 2rem;
}

.gadr-post-footer-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 8px 0 4px 0;
}

/* privacyPolicy.css */
.privacy-policy {
  font-family: Arial, sans-serif;
  margin: 20px;
  color: #333;
}

.privacy-policy .section {
  margin-bottom: 20px;
}

.privacy-policy h2 {
  color: #000000;
}

.privacy-policy ul {
  list-style-type: none;
  padding: 0;
}

.privacy-policy li {
  margin-bottom: 10px;
}

.gadr-letters-counter {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  right: 6px;
}

.gadr-range-input::-moz-range-thumb {
  background: var(--gadr-primary-green);
}

.gadr-range-input::-moz-range-thumb:active {
  background: var(--gadr-active-green);
}

.gadr-range-input::-webkit-slider-thumb {
  background: var(--gadr-primary-green);
}

.gadr-range-input::-webkit-slider-thumb:active {
  background: var(--gadr-active-green);
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border: 0;
}

.btn-toggle:focus {
  outline: none;
  box-shadow: none;
}

.btn-toggle:active:focus {
  box-shadow: none;
}

.btn-toggle:hover {
  color: rgba(0, 0, 0, 0.85);
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, 0.85);
}

.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: 0.1875rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}

.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  color: white;
  background-color: var(--gadr-focus-green);
}

@media screen and (max-width: 1080px) {
  .responsive-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
  }
}

.gadr-scrollable-div {
  width: 100%; /* or max-width: 300px; */
  overflow-x: auto; /* This makes it horizontally scrollable */
  white-space: nowrap; /* Prevents wrapping of content to the next line */
  padding: 10px;
}

.gadr-form-edit-user {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.gadr-form-edit-user-left {
  display: flex;
  width: 300px;
}
.gadr-form-edit-user-right {
  display: flex;
}

.gadr-indicator {
  display: inline-block;
  background-color: #00a36c; /* Gösterge rengi */
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 10px; /* Gösterge ile metin arasındaki boşluk */
}

.active a {
  font-weight: bold;
  color: #00a36c; /* Aktif link rengi */
}

.active .gadr-indicator {
  display: inline-block; /* Aktif linkteki gösterge */
}

li {
  list-style-type: none; /* Liste stillerini kaldırmak için */
}
