* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100vh;
  width: 100%;
  font-family: Arial, sans-serif;
  background: #f0f0f0;
  overflow: hidden;
}

.app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: white;
}

.header {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-weight: bold;
  color: white;
  background: #f55;
  border-bottom: 1px solid #ddd;
}

.map {
  display: flex;
  width: 100vw;
  background: #e3e3e3;
  position: relative;
  height: calc(100% - 250px);
}

.info-card {
  background: #f55;
  color: white;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  display: flex;
  height: 160px;
}

.info-card .vessel-details p {
  font-size: 14px;
  margin-top: 8px;
}

