body{
 body {
  margin: 0;      /* Remove default browser margin */
  padding: 20px;  /* Create a 20px "buffer" zone inside the body */
}

table {
  border-collapse: collapse; /* Removes the double line/spacing between cells */
  border: none;              /* Removes the outer border */
}

td, th {
  border: none;              /* Removes borders from individual cells */
}
  



.container {

  width: 100%; 
  min-height:600px;
  display: grid;
  row-gap:0;
  align-content: start;
  justify-content: center; /* Centers child horizontally */
  
}
.navbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width:100%;
  max-height:150px;
}
.toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width:100%;
}
.data {
  display:flex;
  align-items: center; /* This vertically centers all children */
    gap: 10px;           /* Adds space between items */

}

.data  label{
  font-size: 14px;
  font-weight: bold;
}

.screen {
  width:100%;
  min-height:600px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.screen label{
  font-size: 14px;
  font-weight: bold;
}

/* css for change city popup box */
/* The dark background overlay */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
}

/* The actual popup box */
.modal-content {
  background: white;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 400px;
  border-radius: 8px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px; top: 10px;
  cursor: pointer;
  font-size: 24px;
}



/* Search and Dropdown styling */
.search-container { position: relative; margin: 15px 0; }

#citySearch {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.autocomplete-results {
  position: absolute;
  background: white;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-top: none;
  z-index: 10;
}

.result-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.result-item:hover { background: #f0f0f0; }

/* End of css for change city popup box */
        </style>