@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wdth,wght@112.5,200..900&display=swap");

:root {
    --primary: #17a4f9;
}

input[type="color"] {
    border: 0;
    background: unset;
    padding: 0;
}

::-webkit-color-swatch {
    border: 0;
    border-radius: .25rem;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

body {
    -webkit-tap-highlight-color: rgba(255, 255, 255, .05);
    user-select: none;
    background: rgb(15,15,20);
    color: #cccccc;
    height: 100vh;
    height: 100svh;
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
}

#droppable-zone {
    background: rgba(25, 25, 25, .9);
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.track-list-wrapper {
    overflow: auto;
    flex: 1 0 0;
    padding: .75rem .5rem;
}

.track-list {
    position: relative;
    display: flex;
    flex-direction: column;
}

.track-list-item {
    background: #121212;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s;
    border-radius: .25rem;
    display: flex;
    flex: 0 0 auto;
    padding: .5rem 1rem;
}

.track-list-item:not(.progress):hover {
    background: #161616;
}

.track-list-item.selected {
    color: var(--primary);
}

.track-list-item.progress {
    opacity: .3;
    cursor: inherit;
}

.track-item-index {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 1rem;
    padding-right: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.track-item-duration {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 4rem;
    font-weight: 500;
}

.track-item-content {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 0;
    padding: 0 1rem;
}

.track-item-cover {
    object-fit: cover;
    border-radius: .25rem;
    width: 64px;
    height: 64px;
}

.track-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

.track-item-artist {
    margin-top: .25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player {
    background: #151515;
}

.player-progress-bar {
    overflow: hidden;
    background: rgb(35 35 35);
    height: 10px;
}

.player-progress {
    transition: transform 1s linear;
    background: var(--primary);
    border-top-right-radius: 5rem;
    border-bottom-right-radius: 5rem;
    height: 100%;
    width: 100%;
}

.notice {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    font-size: 1.25rem;
}




.replay-wrapper {
    background: color-mix(in srgb, var(--primary) 8%, black);
    color: #fefefe;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.replay-participants {
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    gap: 1.5rem;
    padding: 5rem 2rem;
    padding-top: 2.5rem;
}

.replay-user-avatar {
    overflow: hidden;
    position: relative;
    border: 4px solid #262626;
    border-radius: 50%;
}

.replay-user-avatar img {
    pointer-events: none;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    padding: .25rem;
    width: 128px;
    height: 128px;
}

.replay-icon {
    background: #1b1b1bd6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.replay-user {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.replay-user.streamMuted {
    opacity: .35;
}

.replay-user-username {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
}

.replay-user-avatar.speaking {
    border: 4px solid var(--primary);
}

.replay-controls, .replay-channel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--primary);
    gap: 1rem;
}

.replay-controls-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 50%;
    background: #fefefe;
    color: var(--primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.replay-channel-name {
    font-size: 1.15rem;
    font-weight: 600;
}

.context-menu {
    overflow: hidden;
    background: #080808;
    border-radius: .5rem;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.25);
}

.context-menu-item {
    border-bottom: 1px solid #151515;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.75rem;
    padding-right: 1rem;
}

.context-menu-item:last-child {
    border-bottom: 0;
}

.context-menu-item:hover {
    background: #111111;
}

.context-menu-item i {
    margin-right: 0.5rem;
    width: 24px;
    font-size: 1.15rem;
    text-align: center;
}

.context-menu-item.dangerous {
    color: #e04506;
}

.modal-wrapper {
    position: fixed;
    background: #151515e8;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.25);
    overflow: auto;
}

.modal-content {
    background: #101010;
    margin: auto;
    width: 600px;
    max-width: 100%;
    border-radius: .5rem;
}

.modal-title {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #151515;
}

.select-menu {
    margin: 1rem;
    border: 1px solid #e04506;
    border-radius: .5rem;
    overflow: hidden;
}

.select-menu-selected {
    padding: 1rem;
    background: #101010;
    cursor: pointer;
    color: #e04506;
    display: flex;
}

.select-menu-selected .icon {
    margin: auto;
}

.select-menu-value {
    flex: 1 0 0;
}

.select-menu-option {
    padding: 1rem;
    border-top: 1px solid #232323;
    cursor: pointer;
}

.select-menu-label {
    font-weight: 500;
}

.select-menu-description {
    color: #747474;
    margin-top: .25rem;
    line-height: 1.35rem;
}

.select-menu-option:last-child {
    border-bottom: 0;
}

.select-menu-options {
    display: flex;
    flex-direction: column;
    background: #181818;
}

.replay-progress-wrapper {
    width: max(60%, 600px);
    margin: 1rem auto;
    max-width: 100%;
    cursor: pointer;
    padding: 1rem;
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.replay-progress-bar {
    background: #262626;
    border-radius: 5rem;
    width: 100%;
    height: .5rem;
}

.replay-progress {
    position: relative;
    width: 60%;
    background: var(--primary);
    height: 100%;
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
}

.replay-progress-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FFF;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
}










.records-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.records-list-item {
    display: flex;
    background: #1d1d1d;
    border-radius: .25rem;
    color: inherit;
    text-decoration: none;
    padding: 1rem;
}

.records-list-item-icon {
    margin: auto 0;
    background: #151515;
    border-radius: 50%;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.records-list-item-content {
    flex: 1 0 0;
}

.records-list-item-channel {
    font-weight: 700;
}

.records-list-item-users {
    display: flex;
    margin-top: .5rem;
    height: 48px;
}

.records-list-item-arrow.material-symbols-outlined {
    margin: auto 0;
    background: #151515;
    border-radius: 50%;
    padding: .5rem;
}

.records-list-item-user-avatar {
    position: relative;
    width: 34px;
    height: 48px;
}

.records-list-item-user-avatar img,
.records-list-item-user-avatar-content {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid #1d1d1d;
    background: #101010;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .95rem;
    font-weight: 700;
    box-sizing: border-box;
    left: 0;
    top: 0;
}

.records-list-item-user-avatar-content {
    background: var(--primary);
    color: #FFF;
}



.player-controls {
    display: flex;
    justify-content: center;
    position: relative;
    gap: 1rem;
    padding: 0.5rem;
}

.player-control-item {
    cursor: pointer;
    font-size: 2rem;
    padding: .75rem;
    border-radius: 50%;
}

.player-control-item.active {
    background: var(--primary);
}

.player-control-item.disabled {
    filter: grayscale(1);
    opacity: .25;
}

.player-control-like,
.player-control-repeat {
    background: rgba(255, 255, 255, .5);
    font-size: 1.25rem;
    margin: auto;
}

.player-control-like.active {
    background: var(--primary);
}

.track-input {
    background: #232323;
    display: flex;
    align-items: center;
    border-radius: .15rem;
    padding: 0 .75rem;
}

.track-input input {
    outline: 0;
    border: 0;
    background: unset;
    padding: .75rem .5rem;
    flex: 1 0 0;
    color: #FFF;
}

.track-list-header {
    text-align: center;
    background: var(--primary);
    margin: 0 0.5rem;
    padding: 0.5rem;
    border-radius: 0.15rem;
    margin-top: 0;
}

.track-header {
    padding: .5rem;
}



















.fade-enter-active,
.fade-leave-active {
    transition: opacity .2s ease-in-out;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0 !important;
}

.move-move,
.move-enter-active,
.move-leave-active {
    transition: all 1.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.move-enter-from,
.move-leave-to {
    opacity: 0 !important;
}

.move-leave-active {
    box-sizing: border-box;
    position: absolute;
    z-index: -1;
    width: 100%;
}







#app {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #1a1a1a;
    overflow: auto;
}

.log-navbar {
    transition: all .2s;
    background: #121212;
    cursor: pointer;
    color: #fff;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-weight: 700;
}

.log-navbar.active {
    background: var(--primary);
}

.log-infos {
    background: #343434;
    border-bottom: 1px solid #1a1a1a;
    text-align: center;
    padding: 0.75rem;
    color: #a1a1a1;
}

.log-list {
    overflow: auto;
    flex: 1 0 0;
}

.log-entry {
    cursor: pointer;
    border-bottom: 1px solid #202020;
    padding: 0rem .5rem;
    line-height: 2.5em;
    color: #a1a1a1;
    transition: all .2s;
    display: block;
    text-decoration: inherit;
}

.log-entry.selected {
    background: color-mix(in srgb, var(--primary) 5%, transparent) !important;
    border-left: 4px solid var(--primary) !important;
}

.log-user img {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 0.5rem;
    background: #101010;
    object-fit: cover;
}

.log-user, .log-channel {
    transition: all .2s ease;
    vertical-align: middle;
    display: inline-flex;
    background: #343434;
    border-radius: 0.25rem;
    padding: 0 0.5rem;
    align-items: center;
    height: 36px;
    overflow: hidden;
    color: #FFF;
    text-decoration: inherit;
    FONT-WEIGHT: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    box-sizing: border-box;
}

.log-filters {
    background: #1a1a1a;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.log-filter-list {
    overflow: auto;
    flex: 1 0 0;
}

.log-filter-name {
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-weight: 700;
    flex:  0 0 48px;
}

.log-filter-item {
    cursor: pointer;
    border-bottom: 1px solid #1f1f1f;
    display: flex;
    align-items: center;
    padding: .75rem;
}

.log-filter-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
}

.log-filter-value {
    margin-left: auto;
}

.log-filter-submit {
    cursor: pointer;
    background: #3b3b3b;
    color: #fff;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-weight: 700;
}

.date-header {
    padding: 0 !important;
    font-weight: 700;
}

.date-pickers {
    display: flex;
    flex: 1 0 0;
}

@media screen and (max-width: 750px) {
    .date-pickers {
        flex-direction: column;
    }
}

.date-picker {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    background: #171717;
    min-width: 0;
}

.date-prev-month.material-symbols-outlined {
    margin-right: auto;
}

.date-next-month.material-symbols-outlined {
    margin-left: auto;
}

.date-days-name {
    flex: 0 0 calc(100% / 7);
}

.date-days-list {
    display: flex;
    flex-wrap: wrap;
    background: #171717;
    max-width: calc(80px * 7);
    align-items: center;
    justify-content: center;
    margin: auto;
}

.date-days-day {
    cursor: pointer;
    flex: 0 0 calc(100% / 7);
    font-weight: 700;
}

.date-days-day.date-other-month {
    cursor: inherit;
    color: #565656;
    font-weight: 100;
}

.date-days-name, .date-days-day {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    aspect-ratio: 1 / 1;
    max-width: 80px;
}

.date-days-name {
    font-weight: 700;
}

.date-days-names {
    display: flex;
    border-bottom: 1px solid #1f1f1f;
    border-top: 1px solid #1f1f1f;
    background: #171717;
    justify-content: center;
}

.date-header, .date-prev-month, .date-next-month {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem;
    box-sizing: border-box;
    background: #1e1e1e;
}

.date-prev-month, .date-next-month, .date-selected-month, .date-selected-year {
    cursor: pointer;
}

.date-number {
    transition: all .2s ease;
    border-radius: 50%;
    background: #ffffff08;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-other-month .date-number {
    background: unset;
}

.date-days-day:not(.date-other-month):hover .date-number {
    background: color-mix(in srgb, var(--primary) 25%, transparent);
}

.date-current .date-number {
    background: #ffffff29;
}

.date-selected .date-number {
    background: var(--primary) !important;
    color: #fFF;
}

.date-hours, .date-minutes {
    border-radius: .25rem;
    padding: .5rem 1rem;
    cursor: text;
    border: 0;
    outline: 0;
    background: unset;
    color: inherit;
    font-weight: 700;
    min-width: 0;
}

.date-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    padding: .5rem;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #252525;
    background: #171717;
    flex: 1 0 0;
}

.filter-submit, .date-submit {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 700;
    padding: 1rem;
    background: #1e1e1e;
}

.log-filter-option {
    cursor: pointer;
    display: flex;
    border-top: 1px solid #1f1f1f;
    padding: .5rem;
    gap: .5rem;
    align-items: center;
    height: 48px;
    box-sizing: border-box;
}

.filter-results .log-filter-option {
    background: #171717;
}

.log-filter-option-selected {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.filter-options {
    flex: 1 0  0;
    overflow: auto;
}

.filter-search-input {
    color: #FFF;
    outline: 0;
    border: 0;
    background: unset;
    padding: 1rem 0;
    width: 100%;
}

.filter-search-wrapper {
    background: #1e1e1e;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.log-filter-option-label {
    display: flex;
    align-items: center;
    font-weight: 700;
    flex: 1 0 0;
    overflow: hidden;
}

span.log-filter-member-displayname {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.log-filter-member-avatar {
    border-radius: 50%;
    margin-right: .5rem;
    width: 36px;
    height: 36px;
}

.filter-results-name, .log-filter-infos {
    padding: .75rem;
    background: #171717;
    border-top: 1px solid #222222;
    text-align: center;
}

.log-no-results {
    text-align: center;
}

.log-filter-infos {
    background: unset;
    font-weight: 700;
}

#navbar {
    display: flex;
    background: #1e1e1e;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
    border-top: 2px solid #2b2b2b;
}

.navbar-item {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-size: .75rem;
    line-height: 1.25rem;
}

.navbar-item.router-link-active {
    color: var(--primary);
}

.navbar-item i {
    font-size: 1.5rem;
}

.dashboard-list {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 900px) {
    .dashboard-list {
        grid-template-columns: 1fr;
    }
}

.dashboard-item-card {
    background: #2a2a2a;
    border-radius: .25rem;
    overflow: hidden;
}

.dashboard-card-header {
    display: flex;
    border-bottom: 1px solid #121212;
    background: #262626;
    font-weight: 500;
}

.dashboard-card-label {
    display: flex;
    align-items: center;
    padding: .75rem;
}

.dashboard-card-header-action {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: .75rem;
}

.dashboard-card-header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-left: auto;
}

.dashboard-card-list-item {
    display: flex;
    border-bottom: 1px solid #363636;
    min-height: 42px;
}

.dashboard-member-avatar {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-right: .5rem;
}

.dashboard-card-list-item-name {
    display: flex;
    align-items: center;
    padding: .35rem 1rem;
    font-weight: bold;
}

.dashboard-card-list-item-value {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0.35rem 1rem;
    font-family: Inconsolata;
    font-size: 1.25rem;
}

.dashboard-card-list-item:nth-child(odd) {
    background: #2e2e2e;
}

.dashboard-card-content, .dashboard-card-footer {
    padding: 1rem;
    font-weight: 600;
    background: #1f1f1f;
    color: #666666;
}

.log-time {
    transition: all .2s;
    font-family: Inconsolata;
    font-weight: 500;
    font-size: .85rem;
    height: 100%;
    display: inline-flex;
    border-right: 1px solid #232323;
    padding: 0 .5rem;
}

.log-entry:hover {
    background: #232323;
}

@media screen and (max-width: 750px) {
    .context-menu-wrapper {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #2222228a;
    }

    .context-menu {
        left: 0 !important;
        bottom: 0 !important;
        top: unset !important;
        width: 100%;
        border-radius: 0;
    }
}

.settings-navbar-item {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 .75rem;
    border-bottom: 1px solid #1f1f1f;
    cursor: pointer;
}

.settings-navbar-item-label {
    flex: 1 0 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.sanction-item {
    --border-color: #252525;
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.sanction-item:hover {
    background: color-mix(in srgb, var(--primary) 5%, transparent) !important;
}

.sanction-item-delay {
    text-align: right;
    font-family: Inconsolata;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: .5rem;
    font-weight: 600;
    flex: 0 0 125px;
}

.sanction-item-user-avatar {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: block;
}

.sanction-item-user-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.sanction-item:hover > div:first-child {
    border-left: 4px solid var(--primary);
}

.sanction-item-user {
    transition: all .2s ease;
    border-left: 0px solid transparent;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 0 0 260px;
    vertical-align: middle;
    padding: .75rem;
    border-right: 1px solid var(--border-color);
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
}

.sanction-item-user span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.log-user:hover, .log-channel:hover {
    background: var(--primary);
}

.log-role-list {
    display: inline-flex;
    vertical-align: middle;
    gap: .25rem;
    flex-wrap: wrap;
}

.log-day-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    height: 42px;
    border-bottom: 1px solid #202020;
    background: #161616;
    color: #8f8f8f;
    box-sizing: border-box;
}

.role-list {
    display: flex;
    flex-direction: column;
}

.role-list-entry {
    /* display: flex; */
}

.role-list-related-log {
    padding: .5rem 1rem;
    background: #1d1d1d;
    display: flex;
}

.role-list-role-name {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    height: 48px;
    background: #272727;
}

.role-list-related-log-executor {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: .95rem;
    flex: 1 0 0;
}

.role-list-related-log-avatar {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-right: .5rem;
}

.role-list-related-log-time {
    color: #6b6b6b;
    font-size: .75rem;
    margin-left: 2rem;
    letter-spacing: .025rem;
    margin-left: auto;
}

.member-profil-header {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.member-profil-avatar {
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 8px #00000099;
    width: 128px;
    height: 128px;
}

.member-profil-username {
    font-weight: 700;
    font-size: 1.5rem;
}

.member-profil-navbar {
    display: flex;
    background: #111111;
}

.member-profil-navbar a {
    flex: 1 0 0;
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.primary {
    color: var(--primary);
}

.settings-masked-input {
    display: flex;
    padding: 1rem;
    overflow: auto;
    cursor: text;
    user-select: text;
    font-weight: 500;
    font-family: Consolas;
    align-items: center;
    background: #1d1d1d;
    box-sizing: border-box;
}

.settings-button {
    padding: .5rem;
    background: #4a4a4a;
    border-radius: .25rem;
}

.log-show-action {
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .15);
    padding: .75rem;
}

.log-message {
    padding: 1rem;
    padding-left: calc((1rem * 2) + 42px);
    position: relative;
}

.log-message-author-avatar {
    box-shadow: 0 0 6px #00000030;
    position: absolute;
    left: 1rem;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, .15);
    border-radius: 50%;
    display: block;
    overflow: hidden;
}

.log-message-author-avatar img {
    width: 100%;
    height: 100%;
}

.log-selected-target {
    background: #4fdfff14;
}

.log-message-author-name {
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    color: inherit;
}

.log-message-content {
    margin-top: .25rem;
    user-select: text;
    white-space: break-spaces;
    overflow: hidden;
    word-break: break-word;
}

.log-outdated {
    opacity: .5;
}

.text-diff-removed {
    background: #008394;
    box-sizing: border-box;
    display: inline-block;
    border-radius: .25rem;
    color: #ffffff;
    margin: 0 .15rem;
    opacity: .5;
}

.text-diff-added {
    background: #009483;
    box-sizing: border-box;
    display: inline-block;
    border-radius: .25rem;
    color: #ffffff;
    white-space: break-spaces;
}

.select-guild-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
    grid-auto-rows: 1fr;
    gap: .25rem;
    padding: .25rem;
}

.select-guild-item-icon {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    width: 56px;
    height: 56px;
}

.select-guild-item {
    transition: all ease-in-out .25s;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    cursor: pointer;
    background: #181818;
    border-radius: .25rem;
    overflow: hidden;
    padding: .5rem;
    text-align: center;
}

.select-guild-item * {
    transition: all ease-in-out .25s;
}

.select-guild-item-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.select-guild-item:not(.disabled):hover {
    background: var(--primary);
    color: #FFF;
}

.select-guild-item:not(.disabled):hover img {
    transform: scale(1.25);
    margin-bottom: .5rem;
}

.channel-category-list {
    padding-left: .5rem;
}

#channel-list {
    padding: 1rem;
    flex: 0 0 300px;
}

.channel-category-title {
    cursor: pointer;
    font-size: .75rem;
    text-transform: uppercase;
    color: #9b9b9b;
    font-weight: 600;
    padding: .5rem 0;
    margin-top: .5rem;
}

.channel-entry, .role-entry {
    cursor: pointer;
    transition: .25s background;
    padding: .5rem;
    border-radius: .25rem;
    margin-top: .25rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.channel-entry:hover,
.role-entry:hover {
    background: #1f1f1f;
}

.channel-entry.selected,
.role-entry.selected {
    background: #2f2f2f;
}

.channel-entry i {
    margin-right: .5rem;
}

.channel-category {
    margin-top: 1rem;
}

#allchannels {
    display: flex;
    padding: .5rem;
    gap: .5rem;
    height: 100%;
    box-sizing: border-box;
}

#channel-list, #role-list, #permissions-list {
    background: #111111;
    border-radius: .25rem;
    overflow: auto;
    flex: 0 0 300px;
    padding: 1rem;
}

#permissions-list {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem 0;
}

.permission-entry {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.permission-entry-title {
    font-weight: 700;
}

.permission-overwrite {
    overflow: hidden;
    margin-left: auto;
    display: flex;
    background: #202020;
    border-radius: .25rem;
    width: calc(50px * 3);
}

.permission-overwrite-allow,
.permission-overwrite-default,
.permission-overwrite-deny {
    transition: .25s background;
    cursor: pointer;
    padding: .5rem;
    flex: 0 0 50px;
    text-align: center;
    box-sizing: border-box;
}

.permission-overwrite-allow:hover,
.permission-overwrite-default:hover,
.permission-overwrite-deny:hover {
    background: #292929;
}

.permission-overwrite-allow {
    color: greenyellow;
}

.permission-overwrite-allow.selected {
    color: #FFF;
    background: greenyellow;
}

.permission-overwrite-default span {
    font-weight: 900;
    transform: skew(-15deg, 0);
    display: block;
    color: #b3b3b3;
}

.permission-overwrite-default.selected span {
    background: #292929;
}

.permission-overwrite-deny {
    color: crimson;
}

.permission-overwrite-deny.selected {
    color: #FFF;
    background: crimson;
}

.permission-overwrite-default {
    --color: #292929;
    --width: 2px;
    border-left: var(--width) solid var(--color);
    border-right: var(--width) solid var(--color);
}

.role-entry img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.log-avatar-picture {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
    vertical-align: middle;
    background: #343434;
}

.log-code {
    overflow: hidden;
    padding: .5rem;
    border-radius: .25rem;
    color: #FFF;
    background: #343434;
    display: inline-flex;
    height: 36px;
    box-sizing: border-box;
    align-items: center;
    gap: .5rem;
    vertical-align: middle;
}

.log-panel {
    display: flex;
    flex: 1 0 0;
    overflow: auto;
}

@media screen and (max-width: 400px) {
    .log-list {
        flex: 0 0 100%;
    }
}

.log-preview {
    flex: 0 0 400px;
    overflow: auto;
    border-left: 1px solid #181818;
    background: #202020;
}

.log-message.selected {
    background: color-mix(in srgb, var(--primary) 5%, transparent) !important;
    border-left: 4px solid var(--primary) !important;
}

.deleted {
    background: color-mix(in srgb, #cf3118 10%, transparent) !important;
}

.edited {
    background: color-mix(in srgb, #cfa618 10%, transparent) !important;
}

.select-guild-item.disabled {
    opacity: .5;
}

.select-guild-item.unavailable {
    filter: grayscale(1);
}

.modal-inner {
    margin: auto;
    width: 420px;
    padding: 1.5rem;
    box-sizing: border-box;
    background: #373737;
    border-radius: .25rem;
    max-width: 100%;
}

.modal-inner-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.modal-inner-description {
    margin-top: .5rem;
    text-align: justify;
    line-height: 1.5rem;
}

.modal-guild-info {
    margin: 1.5rem 0;
    text-align: center;
}

.modal-guild-info-icon {
    background: #181818;
    border-radius: .5rem;
    width: 128px;
    height: 128px;
    box-shadow: 0 0 12px #00000026;
}

.modal-guild-info-name {
    font-weight: 700;
    margin-top: .5rem;
    font-size: 1.15rem;
}

.modal-inner-buttons {
    margin-top: 1rem;
}

.modal-inner-button {
    transition: .2s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    justify-content: center;
    padding: .5rem;
    box-sizing: border-box;
    background: #515151;
    border-radius: .25rem;
    font-weight: 700;
}

.modal-inner-button:hover {
    background: #FFF;
    color: #515151;
}
.intro {
    color: #FFF;
    margin: auto;
    padding: 1rem;
    text-align: center;
}

.intro-title {
    font-size: 3rem;
    font-weight: 700;
}

.intro-slogan {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-top: .5rem;
    font-weight: 400;
}

.intro-login {
    transition: all .2s;
    background: var(--color-primary);
    color: #FFF;
    text-decoration: none;
    padding: .75rem;
    border-radius: .25rem;
    display: flex;
    margin-top: 1rem;
    font-weight: 600;
    align-items: center;
    gap: .5rem;
    justify-content: center;
}

.intro-login:hover {
    background: #FFF;
    color: rgba(var(--bg-secondary))
}

:root {
    --bg-secondary: 22, 22, 30;
    --color-primary: #6f5cff;
}

.app-background-grid-wrapper {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.app-background-grid {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: 10rem 10rem;
    background-image: linear-gradient(to right, rgba(var(--bg-secondary)) 1px, transparent 1px), linear-gradient(to bottom, rgba(var(--bg-secondary)) 1px, transparent 1px);
    z-index: -10;
}

.support-server {
    gap: .5rem;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    align-items: center;
}

.support-server span {
    transition: all .8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.support-server:hover{
    color: var(--color-primary);
}

.support-server:hover .support-server-icon {
    transform: rotate(360deg);
}

.support-server-icon {
    transition: all .8s cubic-bezier(0.22, 0.61, 0.36, 1);
    width: 32px;
    height: 32px;
}

.home-navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    top: 1rem;
    display: flex;
    gap: 1rem;
}

.home-navbar-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all .25s;
    color: #FFF;
    gap: .5em;
    align-items: center;
}

section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: 2rem;
    box-sizing: border-box;
}

section:nth-of-type(1) {
    display: flex;
}

.home-navbar-item:hover {
    color: var(--color-primary);
}

.section-card {
    background: rgb(15,15,20);
    border-radius: .5rem;
    height: 100%;
    color: #FFF;
    margin: auto;
    max-width: 100%;
    width: 800px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 2.25rem;
}

.section-description {
    line-height: 2rem;
    margin-top: 1rem;
    font-size: 1.15rem;
    text-align: justify;
}

.section-table {
    background: rgb(22, 22, 30);
    border-radius: .5rem;
    margin: 2rem 0;
    overflow: hidden;
}

.section-table-row {
    display: flex;
    border-bottom: 1px solid hsl(240 15% 14% / 1);
}

.section-table-row:last-child,
.section-table-cell:first-child {
    border-bottom: 0;
    border-left: 0;
}

.section-table-cell {
    padding: 1rem 1.5rem;
    flex: 1 0 0;
    border-left: 1px solid hsl(240 15% 14% / 1);
}

.section-footer-legend {
    color: hsl(240 15% 50% / 1);
    line-height: 1.75rem;
}

.section-table-colname {
    font-weight: 700;
}

.section-table-colname,
.section-table-cell-value {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-table-colname:nth-child(2),
.section-table-cell-value:nth-child(2) {
    color: color-mix(in srgb, var(--color-primary) 80%, #FFF) !important;
}

.section-table-cell-value:nth-child(2) i {
    padding: .25rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-primary) 80%, #FFF) !important;
    color: #FFF;
}

.section-table-cell-value:nth-child(3) i {
    box-sizing: border-box;
    padding: .25rem;
    border-radius: 50%;
    background: hsl(240 15% 60% / 1);
    color: hsl(240deg 15.38% 10.2%);
}

.section-table-colname:nth-child(3),
.section-table-cell-value:nth-child(3) {
    color: hsl(240 15% 60% / 1);
}

.section-table-rowname {
    display: flex;
    align-items: center;
    line-height: 1.5rem;
    font-weight: 500;
}

::-webkit-scrollbar {
    background: unset;
    width: 1.5rem;
    height: 1.5rem;
}

::-webkit-scrollbar-thumb {
    transition: all .2s;
    background: var(--primary);
    background-clip: padding-box;
    border-radius: 5rem;
    border: 8px solid transparent;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFF;
    background-clip: padding-box;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

.date-hours {
    text-align: right;
}

.log-message-attachments {
    overflow: hidden;
    border-radius: .5rem;
    display: inline-block;
}

.log-message-attachment {
    display: block;
    object-fit: cover;
    max-width: 100%;
}

.missing-permissions {
    display: flex;
    /* margin: 1rem; */
    padding: 1rem;
    background: #f93a15;
    /* border-radius: .25rem; */
    color: #000;
    text-decoration: inherit;
}

.missing-permissions-button {
    background: #ff8000;
    border-radius: .25rem;
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    padding: .25rem .5rem;
    margin-left: .5rem;
}

.missing-permissions-icon {
    border-radius: 50%;
    background: #000;
    width: 32px;
    height: 32px;
    margin: auto 0;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .75rem;
    color: #f93a15;
}

.missing-permissions-message {
    margin: auto 0;
}

.invite-card {
    border-radius: .5rem;
    background: rgb(var(--bg-secondary));
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1.25rem;
}

.invite-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 1.25rem;
    background: #0f0f14;
}

.invite-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 1rem;
}

.invite-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.invite-card-details {
    display: flex;
    gap: 1rem;
    margin-top: .5rem;
}

.invite-card-stats {
    font-size: .85rem;
    display: flex;
    align-items: center;
}

.invite-card-stats-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: hsl(240 14% 30% / 1);
    margin-right: .35rem;
    display: block;
}

.invite-card-stats-icon.primary {
    background: var(--color-primary);
}

.invite-card-invite {
    margin-left: auto;
    font-size: .75rem;
    font-weight: 500;
    margin-left: auto;
}

.invite-list {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}

.invite-card-badge {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.settings-server-switcher {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.settings-server-switcher-icon {
    border-radius: 50%;
    width: 64px;
    height: 64px;
}

.settings-server-switcher-details-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.settings-server-switcher-details-description {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-top: .5rem;
}

.settings-server-switcher-details-description i {
    font-size: 1.25rem;
}

.log-message-embeds {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: .5rem;
}

.log-message-embed {
    padding: .75rem;
    background: #2e2e2e;
    border-radius: .25rem;
    border-left: 4px solid gray;
    overflow: hidden;
}

.log-message-embed-title {
    font-size: 1.05rem;
    font-weight: 600;
}

.log-message-embed-fields {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    gap: 1rem;
}

.log-message-embed-field-name {
    font-weight: 700;
}

.log-message-embed-field-value {
    margin-top: .5rem;
}

.log-message-embed-field.log-message-embed-field-inline {
    font-size: .95rem;
}

.log-message-embed-footer {
    font-size: .75rem;
    font-weight: 500;
}

.log-filter-member-username {
    margin-left: auto;
    font-weight: 500;
    font-size: .75rem;
}

.voice-interactions-profil-avatar {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: .5rem 1rem;
}

.voice-interactions-list-entry {
    display: flex;
}

.voice-interactions-user, .voice-interactions-total-time, .voice-interactions-last-interaction-time {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.voice-interactions-list {
    padding: .5rem 0;
}

.voice-interactions-globalname {
    font-weight: 600;
    font-size: 1.25rem;
}

.voice-interactions-total-time {
    margin-left: auto;
    font-weight: bold;
}

.voice-interactions-user {
    flex-direction: column;
    align-items: baseline;
    gap: .25Rem;
}

.voice-interactions-username {
    font-size: .95rem;
    color: #8a8a8a;
}

.voice-interactions-last-interaction-time {
    letter-spacing: .025rem;
    font-family: monospace;
    font-size: .85rem;
    color: #898989;
}

.voice-interactions-number {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: right;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: monospace;
    flex: 0 0 48px;
    padding-right: 0;
}

.log-presence-title {
    padding: 1rem;
    text-align: center;
    background: #2f2f2f;
    font-weight: 700;
}

.log-presence-user {
    display: flex;
    padding: 2rem 1rem;
}

.log-presence-avatar-container {
    width: 64px;
    height: 64px;
    object-fit: contain;
    overflow: hidden;
    margin-right: 1rem;
    position: relative;
}

.log-presence-avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.log-presence-avatar-presence {
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: -1px;
    right: -1px;
    display: block;
    border-radius: 50%;
    border: 4px solid #202020;
    background: #747474;
}

.log-presence-name {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1 0 0;
    overflow: hidden;
}

.log-presence-displayname {
    font-weight: 700;
    font-size: 1.15rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.log-presence-username {
    margin-top: .25rem;
    color: gray;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.log-presence-avatar-presence.log-presence-status-dnd {
    background: #e43c10;
}

.log-presence-avatar-presence.log-presence-status-idle {
    background: #ffd500;
}

.log-presence-avatar-presence.log-presence-status-online {
    background: #60cf15;
}

.log-presence-platforms .log-presence-status-dnd {
    color: #e43c10;
}

.log-presence-platforms .log-presence-status-idle {
    color: #ffd500;
}

.log-presence-platforms .log-presence-status-online {
    color: #60cf15;
}

.log-presence-platforms {
    border-top: 4px solid #2f2f2f;
    display: flex;
    justify-content: center;
}

.log-presence-platforms .material-symbols-outlined {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.log-presence-activities {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-top: 4px solid #2f2f2f;
}

.log-presence-activity {
    background: #2b2b2b;
    border-radius: .25Rem;
}

.log-presence-activity-assets-container {
    width: 48px;
    height: 48px;
    overflow: hidden;
}

.log-presence-activity-assets-image {
    background: rgba(0, 0, 0, .15);
    width: 100%;
    height: 100%;
    display: block;
    border-radius: .25rem;
}

.log-presence-activity-name {
    background: rgba(0, 0, 0, .15);
    padding: .5rem 1rem;
    font-weight: bold;
    color: gray;
}

.log-presence-activity-content {
    display: flex;
    padding: 1rem;
}

.log-presence-activity-details {
    margin-left: 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: .25rem;
}

.log-presence-activity-state {
    font-weight: 600;
}

.log-voice-user .log-presence-avatar-container {
    width: 42px;
    height: 42px;
}

.log-voice-user-list {
    padding: .75rem 0;
}

.log-voice-user {
    padding: .75rem 1rem;
    text-decoration: inherit;
    color: inherit;
}

.log-voice-user-time {
    flex: 0 0 25%;
    text-align: right;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: .25rem;
}

.log-voice-user-join-time {
    font-weight: 500;
    font-size: .95rem;
}

.log-voice-user-join-at {
    color: gray;
    font-size: .75rem;
}

span.friend-badge {
    font-size: .75rem;
    background: #c68816;
    color: #FFF;
    padding: .05rem .25rem;
    border-radius: .5rem;
}


#graph {
    overflow: auto;
    color: #000;
    background: #f2f2f2 !important;
    font-family: Arial, sans-serif;
    height: 100%;
    height: 100svh;
    position: relative;
}

#graph-canvas {
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-drag: none;
    cursor: move;
    display: block;
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

#graph canvas {
    width: 100%;
    height: 100%;
}

#graph .graph-member {
    pointer-events: none;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 180px;
    background: #9a9a9ad4;
    padding: 1rem;
    border-radius: .25rem;
}

#graph .graph-member-avatar {
    background: black;
    border-radius: 50%;
    width: 128px;
    height: 128px;
    object-fit: contain;
    margin: auto;
    display: block;
    margin-bottom: 1rem;
}

#graph .graph-member-username {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: .5rem;
    background: #7d7d7d;
    color: #FFF;
    border-radius: .25rem;
    text-align: center;
    padding: .25Rem;
}

#graph pre { background: #f4f4f4; padding: 10px; border: 1px solid #ddd; overflow-x: auto; }
#graph #mousePosition {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.graph-member-role {
    background: var(--color);
    color: #FFF;
    text-shadow: 0 0 3px black;
    padding: .35rem .5rem;
    border-radius: .25rem;
    font-size: .95rem;
}

.graph-member-roles {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-top: .25rem;
}

.missing-permissions-card {
    --primary: #f93a15;
    margin: .5rem;
    background: #272727;
    border-radius: .25Rem;
    border: 2px solid var(--primary);
}

.missing-permissions-title {
    background: var(--primary);
    color: #000;
    font-weight: 700;
    padding: .75rem;
    display: flex;
    align-items: center;
}

.missing-permissions-card .missing-permissions-icon {
    display: inline-flex;
    flex: 0 0 24px;
    height: 24px;
    font-size: 1rem;
    margin-right: .5rem;
}

.missing-permissions-viewlogs {border-bottom: 1px solid #333333;padding: 1rem;}

.missing-permissions-channels-title, .missing-permissions-viewlogs-title {
    font-weight: 500;
    display: flex;
    align-items: center;
}

.missing-permissions-viewlogs-description {
    line-height: 1.25rem;
    margin-top: .5rem;
}

.missing-permissions-channels {
    padding: 1rem;
}

.missing-permissions-channels-description {
    line-height: 1.25rem;
    margin-top: .5rem;
}

.missing-permissions-channels-list {
    margin-top: .75rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.missing-permissions-channels-item {
    background: #3b3b3b;
    padding: .75rem 1rem;
    border-radius: .25rem;
    color: #aaaaaa;
}

.missing-permissions-status {
    --status-color: red;
    flex: 0 0 24px;
    height: 24px;
    background: #272727;
    border-radius: 50%;
    margin-right: .5rem;
    border: 6px solid var(--status-color);
    box-sizing: border-box;
    border-color: var(--status-color);
}

.missing-permissions-status.success {
    --status-color: #75ff00;
}

.graph-buttons {position: absolute;bottom: 10px;left: 10px;font-family: Arial, sans-serif;font-size: 14px;display: flex;gap: .25rem;flex-wrap: wrap;}

.graph-button-time-ranges {
    display: flex;
    background: #FFF;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    height: 28px;
}

.graph-button-time-range {
    padding: 5px 10px;
    border-left: 1px solid #ccc;
    width: 25px;
    font-weight: 500;
    letter-spacing: .025rem;
    transition: all .1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graph-button-time-range:first-child {
    border: 0;
}

.graph-button-time-range.active, .graph-button-time-range:hover {
    background: var(--primary);
    color: #FFF;
}

.graph-input-user-search {
    border: 1px solid #ccc;
    border-radius: .25rem;
    padding: 0 .5rem;
    height: 28px;
}

.sanction-item-reason {
    flex: 1 0 0;
    line-height: 1.5rem;
    display: flex;
    align-items: center;
    padding: .75rem;
    border-right: 1px solid var(--border-color);
    gap: .5rem;
}

.sanction-item-reason-empty {
    color: #565656;
}

.sanction-item-date {
    color: #565656;
    font-size: .85rem;
}

.sanction-list {
    min-width: 1000px;
}

.sanction-item-user-username {
    font-size: .75rem;
    font-weight: 100;
    letter-spacing: .01rem;
    margin-top: .25rem;
    color: #565656;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sanction-item-user-avatar-wrapper {
    position: relative;
}

.sanction-item-user-avatar-small {
    position: absolute;
    right: -4px;
    bottom: -2px;
    width: 14px;
    height: 14px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
}

.sanction-type-list {
    display: flex;
}

.sanction-type-list .sanction-type {
    flex: 1 0 0;
    text-align: center;
    padding: 1rem;
    background: #272727;
    border-right: 1px solid #323232;
    cursor: pointer;
    transition: .2s all;
}

.sanction-type-list .sanction-type:last-child {
    border-right: 0;
}

.sanction-type-list .sanction-type:hover, .sanction-type-list .sanction-type.selected {
    background: var(--primary);
}

.sanction-item-delay-expired {
    color: #d14848;
}

.sanction-list-viewer {
    overflow: auto;
    flex: 1 0 0;
}

.sanction-item-user-displayname {
    overflow: hidden;
    text-overflow: ellipsis;
}


.sanction-item-number {
    transition: all .2s;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 60px;
    padding: .75rem;
    box-sizing: border-box;
    font-weight: 700;
}

.sanction-item:hover .sanction-item-number {
    color: var(--primary);
}

.filter-window {
    flex: 1 0 0;
    display: flex;
    overflow: auto;
}

.filter-results {
    flex: 1 0 0;
    border-left: 1px solid #222222;
    overflow: auto;
}

@media screen and (max-width: 1000px) {
    .filter-window {
        flex-direction: column;
    }

    .filter-results {
        flex: unset;
        max-height: calc(48px * 4 + 43.4px);
    }
}

.log-icon {
    transition: all .2s;
    color: var(--primary);
    margin-right: .5rem;
    display: inline-block;
    height: 100%;
    border-right: 1px solid #232323;
    padding: 0 .5rem;
}

.log-icon i {
    vertical-align: middle;
}

.log-entry.selected .log-time,
.log-entry.selected .log-icon {
    border: 0;
}

.log-section-label {
    padding: .75rem 1rem;
    border: 1px solid #2e2e2e;
    border-left: 0;
    border-right: 0;
    font-weight: 500;
    background: #2e2e2e;
}

.log-member-roles {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: .75rem;
}

.log-member-role {
    padding: .75rem;
    border-radius: .25rem;
    background: #363636;
}

.log-code img {
    height: 100%;
}

.dashboard-option-group {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem;
}

.dashboard-option-label {
    font-weight: 700;
    padding: 1rem;
}

.dashboard-option, .dashboard-option-button {
    transition: .2s all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .75rem;
    background: #303030;
    border-radius: .25rem;
    flex: 0 0 60px;
    font-weight: 600;
    box-sizing: border-box;
    gap: .5rem;
    height: 42px;
}

.dashboard-option:hover, .dashboard-option-button:hover {
    background: #4a4a4a;
}

.dashboard-option-active {
    background: var(--primary) !important;
    color: #FFF;
}

.channel-entry.channel-changed {
    background: #ff45455e;
}
