html,
body,
#__next {
    margin: 0;
    padding: 0;
    height: 100%;
}

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

#root {
    height: 100%;
}

#container {
    flex-grow: 1;
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

input {
    color: #dadada;
    padding: 5px;
    border: 0;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.ui-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    pointer-events: none;
}

.ui-server {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: all;
}

.ui-server span {
    color: #dadada;
}

.ui-server input {
    width: 165px;
}

.ui-server #connect {
    width: 100%;
}

.ui-list {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: all;
}

.ui-list span {
    color: #dadada;
}

.ui-list #sublist {
    padding: 5px;
    max-height: 400px;
    overflow-y: scroll;
}

.ui-list #sublist table {
    width: 100%;
    text-align: left;
    color: #dadada;
}

.ui-list #no-upload {
    background-color: #d25f00;
}

.ui-list #effect_id {
    width: 160px;
    overflow: hidden;
    cursor: pointer;
    color: #919191;
    padding-right: 10px;
}

.ui-list #effect_id_selected {
    width: 160px;
    overflow: hidden;
    cursor: default;
    text-decoration: underline;
    color: white;
    padding-right: 10px;
}

.ui-list #effect_id_dir {
    overflow: hidden;
    cursor: pointer;
    color: #dcdcdc;
    padding: 4px;
    border: 1px solid rgba(220, 220, 220, 0.19);
    border-radius: 3px;
    background: rgba(67, 67, 67, 0.65);
}

.ui-list #effect_path {
    font-size: 12px;
    cursor: pointer;
    color: #919191;
}

::-webkit-scrollbar {
    display: none;
}

.ui-settings {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    pointer-events: all;
}

.ui-control {
    position: absolute;
    bottom: 65px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    pointer-events: all;
}

.ui-list #delete {
    background: rgb(180, 50, 50);
}

.ui-curve-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    pointer-events: all;
}

.ui-curve-box #control {
    display: flex;
    flex-direction: row;
    gap: 5px;
    pointer-events: all;
}

.ui-curve-box #control span {
    padding-top: 4px;
    color: #dadada;
}

.ui-state {
    position: absolute;
    top: 10px;
    left: calc(50% - 40px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.ui-state span {
    color: #dadada;
    user-select: none;
}

button {
    color: #dadada;
    background: rgb(75, 75, 75);
    border: 1px solid #2d2d2d;
    border-radius: 5px;
    padding: 5px 10px;
}

button:not(:disabled):hover {
    background: #606060;
    cursor: pointer;
}

button:disabled {
    background: #333333;
}

.input-box {
    color: #dadada;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    border-radius: 5px;
    padding: 15px;
    width: 165px;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 5px;
    bottom: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}

svg {}