body {
  margin: 0;
  padding: 0;
  background: url("../img/background.jpeg") no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  height: 100vh;
}

.logo-container{
  text-align: center;
  margin: 100px;
}

.search-input {
  padding: 15px 20px;
  font-size: 16px;
  border: none;
  outline: none;
  width: 450px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.search-button {
  background: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-button img{
  width: 20px;
}

.logoImg{
  width: 550px;
}

.search-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.input-wrapper {
  position: relative;
}

.results-container {
  position: absolute;
  top: 120% ;
  left: 0;
  width: 100%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  font-size: 16px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
}

.result-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.result-item:last-child {
  border-bottom: none;
}

.result-item:hover {
  background-color: #f0f0f0;
}

.card-container{
  display: flex;
  padding: 30px;
  padding-top: 0px !important;
}

/*.card-container .card{*/
/*  animation: ;*/
/*}*/

.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 20px;
  margin: 20px auto;
  width: 90%;
  max-width: 800px;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.close-button{
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.close-button img{
  width: 25px;
}

.card-container .card:last-of-type{
  margin-left: 10px;
  transition: 1s;
}

.card-container .card.closed{
  width: 0px;
  padding: 0px;
  margin: 0px;
}

.card-container .card.closed button{
  display: none;
}

.header-text {
  font-size: 22px;
  font-weight: bolder;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.dropdown-button:hover {
  background: #f0f0f0;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.date-select {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.date-select:focus {
  outline: none;
  border-color: #0077ff;
}

/* From Uiverse.io by mrhyddenn */
.spinner {
  width: 3em;
  height: 3em;
  cursor: not-allowed;
  border-radius: 50%;
  border: 2px solid #444;
  box-shadow: -10px -10px 10px #6359f8, 0px -10px 10px 0px #9c32e2, 10px -10px 10px #f36896, 10px 0 10px #ff0b0b, 10px 10px 10px 0px#ff5500, 0 10px 10px 0px #ff9500, -10px 10px 10px 0px #ffb700;
  animation: rot55 0.7s linear infinite;
}

.spinnerin {
  /*border: 2px solid #444;*/
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rot55 {
  to {
    transform: rotate(360deg);
  }
}

.forecast{
  font-size: 18px;
  margin-bottom: 10px;
}

table.dataTable tbody tr {
  cursor: pointer;
  transition: all 0.2s ease;
}

table.dataTable tbody tr:hover {
  outline: 2px solid #007BFF; /* Adds a border around the row */
  outline-offset: -2px;       /* Ensures the outline sits exactly at the row edge */
  /*background-color: #f5faff;  !* Optional: subtle highlight background *!*/
}

#other_card {
  overflow: hidden;
  position: relative;
}

.scrollable-content {
  overflow-y: scroll;
  padding-right: 10px; /* For scrollbar space */
  margin-top: 10px;
}
