body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #222;
    color: #ababab;
    font-family: "Gamja Flower", sans-serif, monospace;
    font-size: 15px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.containercontainer {
    border: 2px solid #ababab;
    border-radius: 10px;
    padding: 8px;
    width: 600px;
}

.container {
    border: 2px solid #ababab;
    border-radius: 10px;
    padding: 8px;
    max-width: 580px;
    position: relative;
}

.uselessbuttons {
    display: flex;
    justify-content: space-between;
    background-color: #353535;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    max-width: 600px;
    margin-left: calc(-1 * 8px);
    margin-right: calc(-1 * 8px);
    margin-top: calc(-1 * 8px);
    cursor: pointer;
}

.uselessbuttons .group1 {
    text-align: left;
}

.uselessbuttons .group2 {
    text-align: right;
}
.innercontainer {
    display: flex;
    margin: 0;
}

.innercontainer .innerleft,
.innercontainer .innerright {
    flex: 1;
    box-sizing: border-box;
    margin: 5px;
    text-align: center;
}

.pfpcontainer, .watchedcontainer {
    border: 2px solid #ababab;
    border-radius: 10px;
}

.pfp,
.lastwatched {
    max-width: 300px;
    height: auto;
    margin: 0;
    display: block;
    border-radius: 10px;
    transition: filter 1.5s ease;
    filter: none;
}

.pfp:hover,
.lastwatched:hover {
    filter: blur(5px);
}

.buttons i:hover,
.controls i:hover {
    transform: scale(1.2);
    transition: all 0.2s ease;
    cursor: pointer;
}

button {
    background-color: #353535;
    color: #ababab;
    font-size: 15px;
    font-family: "Gamja Flower", sans-serif, monospace;
    border-radius: 10px;
    border: 2px solid #ababab;
    width: 100%;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    box-sizing: border-box;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 1.3s ease;
}


button i {
    margin-left: 8px;
}

#oohshiny {
    position: relative;
    overflow: hidden;
    background-color: #353535;
    color: #ababab;
    font-size: 15px;
    font-family: "Gamja Flower", sans-serif, monospace;
    border-radius: 10px;
    border: 2px solid #ababab;
    width: 100%;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    box-sizing: border-box;
    margin-bottom: 5px;
}

#oohshiny::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 4s linear infinite;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

button:hover {
    transform: translateY(-2px) scale(1.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.social-button:hover{
    transform: scale(.97);
}

.longtextarea{
    border: 2px solid #ababab;
    padding: 8px;
    margin: 5px;
    border-radius: 10px;
    background-color: #333;
}

.small {
    font-size: 10px;
}