.modal {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.5);

    justify-content: center;
    align-items: center;

    z-index: 1000;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    min-width: 400px;
    position: relative;
    color: black;
}

#closeModal {
    position: absolute;
    top: 10px;
    right: 10px;
}

#mango-code {
    display: none;
    border: solid;
    border-radius: 1rem;
    padding-top: .875rem;
    padding-bottom: .875rem;
    padding-right: 1rem;
    padding-left: 1rem;
    border-width: 1px;
    border-color: rgba(37, 37, 37, 1);
    font-family: "consolas";
    color: "#d4d4d4";
    flex-direction: row;
    width: 30rem;
}

#mango-code-command {
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        "Liberation Mono",
        "Courier New",
        monospace;
    flex-grow: 1;
    text-align: left;
    overflow-x: auto;
}

#mango-code-copy {
    width: 10%;
    cursor: pointer;
    text-align: right;
}



#mango-code-command::-webkit-scrollbar {
    height: 6px;
}

#mango-code-command::-webkit-scrollbar-track {
    background: transparent;
}

#mango-code-command::-webkit-scrollbar-thumb {
    background: #6b6b6b;
    border-radius: 999px;
}

#mango-code-command::-webkit-scrollbar-thumb:hover {
    background: #888;
}