.shadow-1 {
  box-shadow: 2px 2px 2px #0a3a65;
}
.shadow-2 {
  box-shadow: 4px 4px 16px #434d56;
}
.shadow-3 {
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.shadow-4 {
  box-shadow: 0 24px 28px -12px black;
}
.shadow-5 {
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 5px;
}
.shadow-6 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 2px, rgba(0, 0, 0, 0.3) 10px 10px 3px 2px;
}
.text-shadow-1 {
  text-shadow: 2px 2px 2px #484848bf;
}
/* Text */
.yawn-paragraph-wide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.6em;
}
.yawn-line {
  display: flex;
  flex-direction: column;
}
.yawn-line-2 {
  display: flex;
  flex-direction: column;
  color: #f6953f;
}
/* Body */
.yawn-body-section {
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  flex-grow: 1;
}
.yawn-body-content {
  position: relative;
  width: 100%;
  max-width: 1250px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  color: black;
  flex-grow: 1;
}
.yawn-top-section {
  display: flex;
  flex-direction: row;
  font-size: 2em;
}
.yawn-main-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  padding: 4px;
  background-color: lightyellow;
}
/* Members */
.yawn-member-list-section {
  background-color: blue;
}
.yawn-member-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yawn-member-block {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  cursor: pointer;
  background-color: lightblue;
}
.yawn-member-me {
  font-weight: bold;
}
/* Rooms */
.yawn-room-list-section {
  background-color: red;
}
.yawn-room-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yawn-room-block {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: orange;
  cursor: pointer;
}
.yawn-room-block-selected {
  color: red;
}
.yawn-room-block-owned {
  font-weight: bold;
}
.yawn-room-owner {
  font-style: italic;
}
/* Invitations */
.yawn-invitation-section {
  display: flex;
  flex-direction: row;
  gap: 15px 50px;
}
.yawn-invitation-list-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
}
.yawn-invitation-list-title-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.yawn-invitation-list-title {
  font-weight: bold;
}
.yawn-invitation-list-count {
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: lightgreen;
  border-radius: 50%;
  font-weight: bold;
}
.yawn-invitation-list {
  padding: 1px 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.yawn-sent-invitation-list {
  background-color: lightgreen;
}
.yawn-received-invitation-list {
  background-color: pink;
}
.yawn-invitation-block {
  padding: 8px 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fdfdfd;
}
.yawn-invitation-detail {
  display: flex;
  flex-direction: row;
  gap: 4px;
  background-color: #fdfdfd;
}
.yawn-invitation-description {
  font-size: 0.8em;
  font-style: italic;
}
.yawn-invitation-control-block {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.yawn-invitation-button {
  padding: 4px 8px;
  font-size: 0.8em;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  cursor: pointer;
}
.yawn-invitation-accept-button {
  border-color: #1896a7;
  color: #1896a7;
}
.yawn-invitation-deny-button,
.yawn-invitation-withdraw-button {
  border-color: #f6953f;
  color: #f6953f;
}
/* Intro */
.yawn-intro {
  justify-content: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #1896a7;
}
/* Yawn content section */
.yawn-top-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 100px;
  justify-content: center;
}
.yawn-title-section {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
/* Main section */
.yawm-main-section {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
/* Room */
.yawn-room-section {
  display: flex;
  flex-direction: column;
  background-color: lightblue;
}
/* Messages */
.yawn-message-section {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.yawn-message-list {
  display: flex;
  flex-direction: column;
}
/* New message */
.yawn-new-message-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.yawn-new-message-input-block {
  flex-grow: 1;
}
/* Buttons */
.yawn-button-section {
  position: sticky;
  bottom: 0;
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  background-color: #fdfdfd;
  border-style: solid none none none;
  border-width: 1px;
  border-color: #6edbea;
}
/* Debug */
.yawn-debug-button-block {
  padding: 10px;
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
}
.yawn-debug-button {
  padding: 4px 6px;
  font-size: 0.7em;
  background-color: grey;
  color: white;
  text-align: center;
  cursor: pointer;
}
.yawn-debug-value {
  padding: 4px 6px;
  font-size: 0.7em;
  background-color: lightblue;
  color: black;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .yawn-invitation-section {
    flex-direction: column;
  }
  .yawn-main-section {
    flex-direction: column;
  }
  .yawn-member-list {
    flex-direction: row;
    max-width: 100%;
    overflow: auto;
  }
  .yawn-room-list {
    flex-direction: row;
    max-width: 100%;
    overflow: auto;
  }
}
