agm-map {
    height: 600px;
}

#searchBox {
    position: absolute;
    top: 33px;
    width: 88%;
    height: 43px;
    left: 15px;
    z-index: 5;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: black;
}

.info-window-content {
    width: 300px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
  }
  
  .info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .info-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }
  
  .info-actions {
    display: flex;
    gap: 8px;
  }
  
  .action-btn {
    font-size: 14px;
  }
  
  .info-body {
    margin-bottom: 15px;
  }
  
  .info-description {
    font-size: 14px;
    color: #666;
  }
  
  .info-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
  }
  
  .info-meta-item {
    display: flex;
    align-items: center;
  }
  
  .info-footer {
    text-align: center;
    margin-top: 10px;
  }
  
  button {
    width: 100%;
  }
  
  button:hover {
    opacity: 0.85;
  }
  