
@font-face {
  font-family: 'Allura';
  src: url('fonts/Allura-Regular.ttf');
}

body {
  background-image: url(assests/sailbackground-garda-SailOS.png);
  background-size: cover;
  background-position: center;  
  background-repeat: no-repeat;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}



.bar-div {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.bottom-bar {
  display: flex;
  width: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.25); 
  color: #fff; 
  justify-content: space-between;
}

.weather-bar {
  color: white;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-left: 2rem;
  text-decoration: none;
  cursor: pointer;
}

.time-bar {
  font-size: 1.5rem;
  margin-right: 2rem;
}

.movable-div {
  position: absolute;
  background-color: #ccffc7;
  width: 50vw;
  height: 70vh;
  border-radius: 1rem;
  flex-direction: column;
  display: none;

}

.movable-divheader {
  display: flex;
  justify-content: end;
  border-radius: 1rem;
  width: 50vw;
  background-color: #ccffc7;
}

.movable-div-content {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  height: 30rem;
  background-color: rgb(219, 255, 236);
  overflow-y: auto;
  overflow-x: hidden;
}

.movable-div-close {
  margin-right: 1rem;
  margin-left: 1rem;
  cursor: pointer;
}

.weatherappicon {
  background-image: url(assests/Designer.png);
  background-size: cover;
  width: 5.4rem;
  height: 5rem;
  font-size: 3rem;
  border: none;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  margin: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
  cursor: pointer;
}

.expanded {
  border-radius: 0 !important;
  height: 100% !important;
  width: 100% !important;
  top: 0px;
  left: 0px;
  overflow: hidden !important;
}

.expanded-header {
  border-radius: 0;
  width: 100%;
  top: 0;
  left: 0;
}

.expanded-content {
  width: 100%;
  height: 100%;
  overflow-x: hidden !important;
}

.place-input { 
  margin: 1rem;
  
}

.map {
  border-radius: 1rem;
  margin: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.invis-div {
  top: 0; 
  left: 0;
  content: none;
  border: none;
  margin: none;
  padding: none;
  height: 1px;
  width: 1px;
}

.weather-result > div {
  background-color: rgb(228, 55, 55);
  margin: 1rem;
  border-radius: 2rem;
  margin-left: 10rem;
  margin-right: 10rem;
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.weather-result > p {
  font-size: 2rem;
  
}

.map-page-div {
  position: absolute;
  width: 40vw;
  height: 70vh;
  background-color: #ffffff;
  display: none;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  overflow: hidden;
}

.map {
  width: 30vw;
  height: 60vh;
  backdrop-filter: none;
  box-shadow: #000000;
  overflow: hidden;
  flex: 1;
}

.map-page-divheader {
  background-color: #ccffc7;
  width: inherit;
  height: 10vh;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  align-items: center;
  display: flex;
  justify-content: end;
  overflow: hidden;
}
  
.map-page-divclose {
  margin-right: 1rem;
  margin-left: 2rem;
  overflow: hidden;
}

.draw-btn, .clear-btn {
  background-color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

.draw-btn:hover, .clear-btn:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.draw-btn.active {
  background-color: #ffb3b3;
  font-weight: bold;
}

.input-map {
  margin: 1rem;
}

.mapappicon {
  background-image: url(assests/mapicon.png);
  background-size: cover;
  width: 5.4rem;
  height: 5rem;
  font-size: 3rem;
  border: none;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  margin: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
  cursor: pointer;
}