/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.settings-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu:hover .dropdown {
  display: block;
}

.add-btn {
  width: 60px;
  height: 60px;
  border-radius: 14px; /* rounded / beveled look */
  border: none;
  background: linear-gradient(145deg, #f0f0f0, #cacaca);
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.15),
    -4px -4px 10px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.05s ease-in-out;
}

.add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.2),
    -4px -4px 12px rgba(255, 255, 255, 0.8);
}

.add-btn:active {
  transform: translateY(1px);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.15),
              inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}

.plus {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}