@import url('https://fonts.googleapis.com/css?family=Roboto:300,500,700');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: 0;
}

html,
body {
  height: 100%;
  background: #36393f;
  color: #dcddde;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
}

.login-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #36393f;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.login-form {
  background: #2f3136;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.login-form h2 {
  margin-bottom: 1rem;
  color: #fff;
}

.login-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 4px;
  background: #202225;
  color: #fff;
}

.login-form button {
  width: 100%;
  padding: 0.75rem;
  background: #5865f2;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-form button:hover {
  background: #4752c4;
}

.error-message {
  color: #f04747;
  margin-top: 0.5rem;
}

.hidden {
  display: none;
}

.container {
  height: 100%;
  display: flex;
}

.vert-container {
  display: flex;
  flex: 1;
  flex-direction: column;
}

/* Channels sidebar */
.channels {
  background: #2f3136;
  display: flex;
  flex-direction: column;
  flex: 0 0 240px;
  height: 100vh;
  box-sizing: border-box;
}

/* Server header */
.channels-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  height: 48px;
  background: #202225;
  box-shadow: 0 1px 0 rgba(4, 4, 5, 0.2);
  font-weight: 600;
  font-size: 16px;
}

.channels-header-dropdown {
  color: #b9bbbe;
  font-size: 18px;
}

/* Channel list */
.channels-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.channels-list-header {
  color: #8e9297;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  display: flex;
  align-items: center;
}

.channels-list-header:hover {
  color: #dcddde;
}

/* Channel items */
.channel {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  height: 32px;
  cursor: pointer;
  border-radius: 4px;
  margin: 0 8px;
  color: #8e9297;
  font-size: 14px;
  font-weight: 500;
}

.channel:hover {
  background: rgba(79, 84, 92, 0.3);
  color: #dcddde;
}

.channel.active {
  background: rgba(79, 84, 92, 0.2);
  color: #fff;
}

.channel-name::before {
  content: '#';
  margin-right: 8px;
  color: #72767d;
}

/* Menu bar */
.menu {
  flex: 0 0 48px;
  padding: 0 16px;
  background: #36393f;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.menu i {
	font-size:2rem;
	position:absolute;
	right:10px;
}

.channels-header i {
	font-size:2rem;
}


/* Chat area */
.chat {
  background: #2c2c2c;
  flex: 1;
}

/* Buttons */
.button {
  background: transparent;
  border: none;
  color: #b9bbbe;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  margin-left: auto;
}

.button:hover {
  color: #dcddde;
}

.messages {
  overflow-y: auto;
  height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
}

.message {
  border-radius: 4px;
  padding: 8px 12px;
  word-wrap: break-word;
}

#message {
	width:calc(100% - 80px);
	padding:10px 15px;
	margin:0;
	font-size:1.25rem;
	margin-left:20px;
	margin-right:20px;
	border:none;
	border-radius:10px;
}

.message:nth-last-child(1) {
	margin-bottom:90px;
}

.message:hover {
  background: #32353b;
}

.message-author {
  color: #5da00d;
  font-size: 1.25rem;
  font-weight: bolder;
  margin-bottom: 2px;
}

.message-content {
  color: #dcddde;
  font-size: 1.35rem;
  line-height: 1.3;
}

*::-webkit-scrollbar {
  width: 10px;
}
 
*::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 20px;
}

a {
	text-decoration: none;
	color: #2d93ec;
}
a:hover {
	text-decoration: underline;
}

	
#ticketList {
	padding-bottom:40px;
}

.search {
	border:none;
	position: absolute;
	border-radius:10px;
	background:#666;
	bottom: -4px;
	padding: 10px;
	margin: 10px;
	font-size: 1rem;
	color: #ffffff;
    width: 215px;
	font-weight:bold;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.search::placeholder {
	font-size: 1rem;
	color: #b5b5b5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.color885309822214483969 {
  color: #cf7b17;
}
.color718760263121108996 {
  color: #cf1717;
}

.color1213658110414290954  {
  color: #56cdfc;
}

.ping {
	background:#00b4ff;
	color:black;
	padding-left:5px;
	padding-right:5px;
	border-radius:5px;
	cursor:default;
}
