* {
  font-family: Arial, Helvetica, sans-serif;
}

head, body {
  margin: 0;
  background-color: white;
}

#map {
  margin-right: 0.5rem;
  padding-top: 1rem;
  height: 22rem;
  display: flex;
  justify-content: center;
  border-radius: 1rem;
}

.hidden {
display: none;
} 

section {
  display: -ms-grid;
  height: 100vh;
  width: 100vw;
}

/* Burası inputsComponent.css */
.card-header {
  display: flex;
  align-items: left;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 1%;
}

.form-control{
  font-style: italic;
  color: black;
}

.form-control:hover {
cursor: pointer;
}

.d-grid {
width: 100%;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

#tooltip {
  background-color: #0B5ED7;
  color: #ddd;
  padding: .5rem;
  border: .1rem solid #ddd;
  border-radius: 20%;
  text-align: center;
  line-height: 1;
}

.tooltip-text {
  visibility: hidden;
  width: max-content;
  background-color: black;
  color: #ddd;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 125%; /* Adjusted based on tooltip size */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
  text-wrap: wrap;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
}

/* Burası OutputComponent.css */
.card-header {
  display: flex;
  align-items: left;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 1%;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td, tr {
  text-align: left;
  border-radius:0.5rem;
  border-top: 0.1rem solid rgb(199, 197, 197);
  border-bottom: 0.1rem solid rgb(199, 197, 197);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

td:first-child {
  width: 50%;
  background-color: #F8F9FA;
}

td:last-child {
  width: 5%;
  background-color: #F8F9FA;
  text-align: center;
}

i {font-weight: bolder;}

.chart-container {
  position: relative; 
  height:100%; 
  width: auto
}