@font-face {
    font-family: 'gg sans';
    src: url('/files/fonts/gg\ sans\ Regular.ttf');
}

body {
    margin: 0;
    min-height: 100vh;
    background: #2c2f33;
    background: linear-gradient(45deg, #2c2f33, #36393e);
}

.mouse-highlight {
    display: flex;
    z-index: 1000;
    position: fixed;
    width: fit-content;
    height: fit-content;
    background: none;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0.049;
    will-change: transform;
    mix-blend-mode: screen;
    transition: all 0.05s;
}

.discord-app {
    display: block;
    top: 50%;
    left: 50%;
    position: fixed;
    width: 1000px;
    height: 600px;
}

.sys-tray {
    display: flex;
}

.sys-tray-time {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color:#7289da;
    font-family: "gg sans";
    font-weight: bold;
}

.stored-apps {
    display: flex;
    align-items: center;
}

.app-drawer {
    display: flex;
    position: fixed;
    z-index: 11;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 50vw;
    width: fit-content;
    padding-left: 10px;
    padding-right: 15px;
    height: 65px;
    background: rgba(35, 39, 42, 0.7);
    backdrop-filter: blur(5px);
    justify-self: center;
    bottom: 20px;
}

.discord-app-icon {
    display: flex;
    align-items: center;
    height: min-content;
    width: 50px;
    cursor: pointer;
}

.discord-app-icon svg {
    width: 100%;
    height: auto;
}

.discord-app-header {
    display: flex;
    font-family: "gg sans";
    cursor: grab;
    border-radius: 3px;
    height: 40px;
    background: #23272a;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.discord-app-header img {
    height: 30px;
}

.app-title {
    color: #7289da;
    font-weight: bold;
    font-size: large;
    margin-left: 10px;
    line-height: 0px;
}

.app-quick-actions {
    display: flex;
    color: white;
    gap: 8px;
    flex-direction: row;
    margin-right: 10px;
}

.app-quick-action {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 10px;
    background-color: #7289da;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    filter: brightness(1);
    transition: filter 1s;
}

.app-quick-action:hover {
    filter: brightness(0.8);
}

.app-quick-action:active {
    transition: none;
    filter: brightness(0.5);
}

.discord-app-header:active {
    cursor: grabbing;
}

.discord-app iframe {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    border:none;
}