body {
    background-color: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    overflow-y: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    justify-items: left;
}
.container > h1 > a {
    color: #fff;
    text-decoration: none;
}
textarea {
    width: 100%;
    min-height: 300px;
    background-color: #181616;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    border-style: dotted;
    border-width: 2px;
    border-color: darkslategrey;
    border-radius: 5px;
}

button {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
    min-height: 30px;
}

button:hover {
    background-color: #666;
}

.button-primary {
    background-color: #4caf50;
}

.button-secondary {
    background-color: #f44336;
}

.paste {
    background-color: #222;
    color: #fff;
    padding: 20px;
    margin-top: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 14px;
}

.btnContainer {
    display: flex;
    width: 100%;
    justify-content: left;
}

.pasteContainer {
    margin-top: 20px;
    width: 100%;
    height: max-content;
    overflow-y: scroll;
    scrollbar-color:rgb(71, 216, 76) #000000;
    scrollbar-width: thin;
    /* -ms-overflow-style: none; */
}
.ul-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.pasteContainer::-webkit-scrollbar {
    /* display: none;  */
    /* background-color: #000000; */
}

.pasteContainer > ul > li {
    background-color: #222;
    color: #fff;
    padding: 20px;
    margin-top: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}
.pasteContainer > ul {
    height: calc(100vh - 600px);
    justify-items: left;
    margin-bottom: 20px;
    margin-top: 10px;
    list-style-type: none;
    padding: 0;
}
.pasteContainer > ul > li > p {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .container {
        max-width: 90vw;
        justify-items: center;
    }
    .btnContainer {
        /* center this div */
        justify-content: center;
        flex-direction: column;
        /* center div not working */
        margin: 0 auto;
    }
    .btnContainer > * {
        width: 100%;
        /* margin: auto; */
    }
    /* responsive text size */
}

/* css for the tag box and inner divs */
.tagBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    width: 100%;
}
.tagBox > * {
    padding: 6px;
    margin: 4px;
    background: #141414;
}

/* Syntax highlighting */
.paste .keyword {
    color: #f44336;
}

.paste .comment {
    color: #757575;
    font-style: italic;
}

.paste .string {
    color: #4caf50;
}

.paste .number {
    color: #ffeb3b;
}

.paste .operator {
    color: #2196f3;
}

.paste .function {
    color: #9c27b0;
}
