/* COLOR PALETTE & BRAND STYLES */
:root {
  --primary-blue: #1a6bff;
  --secondary-grey: #cacacb;
  --transparent: transparent;
  --teal: #077A7D;
  --red: #F9041B;
  --light-red: #FDCCD1;
  --orange: orange;
  --light-orange: #ffe4c9;
  --green: #00b300;
  --light-green: #d2ffd2;
  --white: #ffffff;
  --black: #000000;
  --blue: #3399ff;
  --light-blue: #80bfff;
  --dark-green: #31511E;
  --light-green2: #65B741;
  --primary-color: #f7a2f2;
  --secondary-color: #7a73f3;
  --links: #73ecf3;
}
/* ========================================================================
   Channel List 
======================================================================== */

#channel-list {
  padding: 0 10px;
}

#channel-list > li {
  display: inline-block;
  height: 5rem;
  text-align: center;
  padding: 5px;
}

#channel-list > li > .wrapper {
  display: block;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 5px;
  border: 5px solid var(--links);
  border-radius: 5px;
  background-color: var(--secondary-color);
}

#channel-list > li > .wrapper.a-notice {
  border-color: red;
  position: relative;
}

#channel-list > li .wrapper.a-notice div:first-child {
  position: relative;
  bottom: 0;
  width: 100%;
  font-size: 0.55rem;
  font-style: italic;
  color: var(--white);
}

#channel-list > li > .wrapper span {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-weight: bold;
}
/* BACKGROUND */
body {
  background: linear-gradient(to right, #73f37a, #fef3f8);
}

/* HEADER / NAV COLORS */
header {
  background-color: var(--primary-color);
}

#top-header h3 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

nav {
  background-color: var(--secondary-color);
}
.navbar-brand {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
  padding: 0 10px;
}
.navbar-toggler {
  color: #fff;
  border-color: #fff;
  padding: 0 10px;
}

.nav-item .active,
a .active {
  color: var(--light-blue);
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.nav-item a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.nav-item a:hover {
  color: var(--white);
  font-weight: bolder;
  text-decoration-color: var(--links);
}

/* FOOTER */
footer {
  color: #fff;
  background-color: #000;
}

footer a {
  color: var(--primary-blue);
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
}

/* CUSTOM ELEMENT STYLING */
.more-chat-rooms a {
  color: var(--primary-blue);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#intro a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: var(--links);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: bold;
}
