.program {
  background-color: #c3c3c3;
  border: #fdffff;
  border-style: groove;
  border-width: 1px;
  box-shadow: 3px 3px 1px black;
}

.program-menu-bar {
  padding: 0.2rem;
  background-color: #000000;
  display: flex;
  justify-content: space-between;
}

.program-preferences {
  background-color: #c3c3c3;
  padding: 0.4rem;
}

.program-header-close {
  width: 15px;
  aspect-ratio: 1 / 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: #c3c3c3;

  border: #fdffff;
  border-style: groove;
  border-width: 2px;
}

.program-header-name {
  font-family: "W95";
  color: #fdffff;
  align-content: center;
}


.program-content {
  border: #000000;
  border-style: ridge;
  border-width: 5px;
}

.program-main-content {
  display: flex;

  gap: 1rem;

  background-color: #fdffff;
  padding: 0.5rem;
}

.program-preferences span {
  display: inline-block;

  border: #000000;
  border-width: 1px;

  padding: 0.1rem;
}

.program-preferences span:first-letter {
  text-decoration: underline;
}

.program-preference:hover {
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
}

.program-header-close:hover {
  background-color: #fdffff;
  cursor: pointer
}