body {
    background: linear-gradient(#646464, #444343, #000000);		
    overflow: hidden;
    margin: 0;
    font-family: courier !important;
    font-weight: bold !important;
}

#container
{
  /* pointer-events: none; */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; 
  left: 0;
}

a {
    text-decoration: none !important;
}

#headerinfo {
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    grid-row-gap: 5px;
    z-index: 1;
}

.nametag {
    padding: 5px;
    background: #ffffffb5;
    border: 1px solid black;
    border-radius: .25em;
    font-family: courier;
    font-weight: bold;
    box-shadow: 2px 3px 5px 1px #0000006b;
}

.link_icons {   
    display: grid;
    /* grid-row-gap: 5px; */
    grid-column-gap: 0px;
    grid-auto-flow: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 5px;
}

.tabs {
    width: calc(100% - 10px);
    display: flex;
    cursor: pointer;
    position: absolute;
    user-select: none;

    z-index: 1;
    overflow-x: scroll;

    /* Remove blue overlay on mobile (WebKit browsers) */
    -webkit-tap-highlight-color: transparent;

    /* Remove focus outline */
    outline: none;

    /* Remove active state styles */
    -webkit-touch-callout: none; /* Disable callout menu on long press */
    -webkit-user-select: none;  /* Disable text selection on iOS */
    -moz-user-select: none;     /* Disable text selection on Firefox */
    -ms-user-select: none;      /* Disable text selection on IE/Edge */
    user-select: none;          /* Disable text selection on modern browsers */

    /* Remove default active styles */
    &:active {
        background: none;
        color: inherit;
    }

    /* Custom scrollbar styles */
    scrollbar-width: thin; /* For Firefox */

    &#scenes {
        scrollbar-color: #979797 #c2111100;
        margin-bottom: 10px;
        bottom: 0;
        left: 10px;
    }
    &#actions {
        scrollbar-color: transparent transparent;
        margin-top: 10px;
        top: 100px;
        left: 20px;
        width: fit-content !important;
    }

    /* For WebKit browsers (Chrome, Edge, Safari) */
    &::-webkit-scrollbar {
        width: 5px; /* Thin scrollbar */
        height: 5px; /* Thin horizontal scrollbar */
    }
    &::-webkit-scrollbar-thumb {
        background-color: #ccc; /* Color of the scrollbar thumb */
        border-radius: 10px; /* Rounded scrollbar thumb */
    }
    &::-webkit-scrollbar-track {
        background: transparent; /* No background for the scrollbar track */
    }
    &::-webkit-scrollbar-button {
        display: none; /* Hide the arrows on the sides */
    }
}
.tab {
    padding: 10px;
    border: 1px solid #ccc;
    color: #ccc;
    margin-right: 5px;
    white-space: nowrap;
    text-align: center;

    /* Prevent text selection */
    user-select: none;

    /* Remove blue overlay on mobile (WebKit browsers) */
    -webkit-tap-highlight-color: transparent;

    /* Remove focus outline */
    outline: none;

    /* Remove active state styles */
    -webkit-touch-callout: none; /* Disable callout menu on long press */
    -webkit-user-select: none;  /* Disable text selection on iOS */
    -moz-user-select: none;     /* Disable text selection on Firefox */
    -ms-user-select: none;      /* Disable text selection on IE/Edge */
    user-select: none;          /* Disable text selection on modern browsers */

    /* Remove default active styles */
    &:active {
        background: none;
        color: inherit;
    }
}
.tab.active {
    background-color: #ddd;
    color: black;
}

#actions .tab {
    width: 43px;
}

#loading-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2em;
    z-index: 10;
    flex-direction: column;
}

#progress-bar-container {
    width: 80%;
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

#progress-bar {
    width: 0;
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    transition: width 0.5s ease;
}

#drop-zone {
    position: absolute;
    margin: 10px;
    width: -webkit-fill-available;
    height: 25%;
    color: white;
    background-color: #ffffff14;
    font-size: 16px;
    border-radius: .3em;
    display: flex;
    transition: 0.3s ease;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

img#drop-zone-icon {
    width: 40px;
    height: 40px;
    border-radius: .3em;
}

div#drop-zone:hover {
    box-shadow: rgb(255 255 255 / 61%) 0px 0px 15px;
    font-size: 18px;
}

div#drop-zone.hover {
    box-shadow: #ffffff9c 0px 0px 15px;
    font-size: 18px;
}

a#drop-zone-link {
    color: white;
}