body {
  font-family: Calibri, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.header {
  background-color: #221646; /* Hoard-it Primary Blue */
  color: white;
  padding: 16px;
  text-align: left;
  margin-bottom: 8px;
}

.header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.header p {
  margin-top: 8px;
  font-size: 13px;
  font-weight: normal;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list li {
  border-top: 1px solid #eee;
}

.link-list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 16px 16px;
}

.link-list li a:hover {
  background-color: #f9f9f9;
  cursor: pointer;
}

.link-list li .icon {
  width: 24px;
  height: 24px;
  stroke: #FF5000; /* Hoard-it Secondary Orange */
  margin-right: 14px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.link-list li span {
  font-weight: bold;
  font-size: 15px;
  color: #333;
}

.link-list li small {
  font-size: 12px;
  color: #555;
}

.logo-container {
  padding: 16px 16px 10px 16px;
  text-align: left;
}

.logo {
  max-width: 160px;
  height: auto;
}

@media (min-width: 600px) {
  body {
    padding: 40px;
  }

  .header h2 {
    font-size: 18px;
  }

  .header p {
    font-size: 14px;
  }

  .link-list li a {
    padding: 18px 20px;
  }
}
