* {
  margin: 0;
  padding: 0;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #111;
    color: #eee;
    height: 100vh;
    /* width: 100vw; */
}

p{
  font-size: 13px;
}

a{
  text-decoration: none;
  color: unset;
}


/* HEADER STYLING */
#header{
  padding: 10px 20px;
  height: 50px;
  background-color: #222;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-left{
  padding: 10px 20px;
}

.header-left h1{
  font-size: 23px;
}


/* BODY STYLING */
#content{
  display: flex;
  flex-direction: row;
  padding: 20px;
  height: 90%;
}
#main-left, #main-right {
  flex: 1;
  padding: 10px;
  
}

#main-left{
  /* background-color: #222; */
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.mclogs-scroll {
  margin-top: 10px;
  flex: 1; 
  overflow-y: auto;     
}

#main-right{
  /* background-color: #222; */
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
#main-right > div:not(:last-child){
  margin-bottom: 15px;
}
#quick-connects{
  border-radius: 5px;
  background-color: #222;
  padding: 10px;
}

#quick-connects-item-wrapper{
  display: flex;
  flex-direction: row;
  /* justify-content: space-evenly; */
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

#quick-connects-item-wrapper > a > img{
  width: 32px;
  height: 32px;
}

#mc-logs{
  background-color: #222;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  max-height: 50%;
  padding: 10px;
}

#mc-logs > h2{
  text-align: center;
  /* padding: 10px 0; */
}

.event-list {
    list-style: none;
    padding: 0;
}
.event-item {
    padding: 8px 12px;
    margin-bottom: 6px;
    background: #222;
    border-radius: 4px;
}