body {
  /* text-align: center; */
  height: 100vh;
  background-image: url('../assets/gradient.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

button {
    border: 3px solid #c7c7c7;
    border-radius: 10px;
    margin: 2px;
    cursor: pointer;
    width: 99%;
    font-size: 20px;
}

button:hover {
  background-color: #59b5c4;
}

button:active {
  background-color: white;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
    box-sizing: border-box;
}

#settings-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    overflow: auto;
    transition: height 0.5s ease;
}

#side-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 71.5%;
  margin: 1%;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border: 3px solid #c7c7c7;
  border-radius: 10px;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

#entries {
    margin: 1%;
    display: grid;
    gap: 20px;
}

#entry-settings {
    display: block;
    border: 3px solid #c7c7c7;
    border-radius: 10px;
    height: fit-content;
    width: 25%;
    margin-bottom: 5px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.entry {
    border-radius: 10px;
    height: fit-content;
    width: 25%;
    margin-bottom: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.entry::after {
    content: "★";
    position: absolute;
    left: 13.25%;
    font-size: 20px;
    color: white;
}

.selected {
    box-shadow: 0 0 10px white;
    border: 3px solid white;
}

.entry:hover {
  box-shadow: 0 0 10px white;
}

.entry-date {
    margin: 2px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #59b5c4;
    border-radius: 10px;
}

.entry-content {
    text-align: center;
    margin: 5px;
}

.entry-source {
    display: flex;
}

.entry-source-item {
    flex: 1;
    margin: 2px;
    font-size: 16px;
    text-align: center;
    border: 2px solid #59b5c4;
    border-radius: 10px;
}

.stardust {
    border: 3px solid #59b5c4;
    background-color: #d0f0ff;
}

.stardust .entry-source-item, .stardust .entry-date {
    border: 2px solid #59b5c4;
    background-color: #d0f0ff;
}

.firestarter {
    border: 3px solid #f8b101;
    background-color: #ffe59d;
}

.firestarter .entry-source-item, .firestarter .entry-date {
    border: 2px solid #f8b101;
    background-color: #ffe59d;
}

.sovereign-objection {
    border: 3px solid #8e2bc1;
    background-color: #d09ceb;
}

.sovereign-objection .entry-source-item, .sovereign-objection .entry-date {
    border: 2px solid #8e2bc1;
    background-color: #d09ceb;
}

.others {
    border: 3px solid grey;
    background-color: #e8e8e8;
}

.others .entry-source-item, .others .entry-date {
    border: 2px solid grey;
    background-color: #e8e8e8;
}

.hidden {
  height: 0px;
}

.show {
  height: 50px;
}

.hidden-entry {
    display: none;
}
