/* Reset browser defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page Layout */
html, body {
  height: 100%;
}

/* Page Background - Benjamin Moore 2066-70 inspired */
body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background-color: #DCE7F3;
}

/* Header */
header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #000000;
  color: white;
}

/* Logo circle */
.logo {
  width: 55px;
  height: 55px;
  background-color: white;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Navbar link style */
#toolbar {
  background-color: #3e3d3d; /* dark gray */
}


#toolbar .nav-item {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.25s ease, color 0.25s ease;
  font-weight: 500;
}

/* Hover = soft box highlight */
#toolbar .nav-item:hover {
  background-color: rgba(255, 255, 255, 0.15); /* faint white box */
}

/* Active tab style */
#toolbar .active {
  background-color: rgba(255, 255, 255, 0.25);
}


#toolbar button {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 10px 12px;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 6px;
}

#toolbar button:hover {
  background-color: #e6e6e6;
}

/* Main Content Area */
main {
  flex: 1;
  padding: 20px;
  text-align: center;
}

/* Rectangular boxes */
.content-box {
  background-color: white;
  padding: 18px;
  min-height: 220px;
  border: 2px solid #d1d1d1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Button-style header link */
.section-btn {
  background-color: #e8e8e8;
  padding: 8px 14px;
  border-radius: 6px;
  display: inline-block;
  color: black;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #bcbcbc;
  transition: 0.2s;
}

/* Hover effect on header only */
.section-btn:hover {
  border-color: #000;
  background-color: #f4f4f4;
}

/* Bullet lists inside box */
.section-list {
  list-style: disc;
  padding-left: 18px;
  margin-top: 10px;
  text-align: left;
}

.section-list li {
  font-size: 14px;
  color: #111;
  padding-bottom: 4px;
}




/* Footer */
footer {
  background-color: #3e3d3d; /* dark gray */
  color: white;
  padding: 10px 15px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
