p {
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
}

.snapshot-manager {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 400px;
    overflow-y: scroll;
}

.snapshot-element {
    background-color: #375863;
    width: 95%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px;
}

.snapshot-element p {
    /* Title */
    font-size: 32px;
    margin: 0px;
    margin-left: 16px;
}

.snapshot-element div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px
}

#edit,
#delete {
    cursor: pointer;
    font-size: 40px;
}

@media only screen and (max-width: 900px) {
    .snapshot-manager {
        width: 95%;
    }

    .snapshot-element {
        width: 90%;
    }

    .snapshot-element p {
        font-size: 18px;
        overflow: hidden;
    }
}

#editor {
    display: flex;
}

#json-editor {
    margin: auto;
    width: 95%;
    height: 630px;
}

#save-snapshot {
    padding: 5px;
    text-align: center;
}

#storage-bar {
    background-color: rgb(87, 87, 87);
    width: 90%;
    height: 40px;
    margin: auto;
    border-radius: 5px;
}

#storage-bar-inner {
    color: white;
    text-align: right;
    height: 40px;
    font-size: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: right;
    overflow: hidden;
    transition: width 1s, background-color 0.5s;
    width: 0%;
}

#storage-bar-inner span {
    margin-right: 10px;
    color: white;
}

@media only screen and (max-width: 900px) {
    #storage-bar {
        height: 30px;
    }

    #storage-bar-inner {
        height: 30px;
        font-size: 20px;
    }
}

#preferences {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

select {
    /* Reset */
    appearance: none;
    border: 0;
    outline: 0;
    font: inherit;
    /* Personalize */
    width: 10rem;
    padding: 1rem 4rem 1rem 1rem;
    background-color: #1a1818;
    color: white;
    border-radius: 0.25em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.5);
    cursor: pointer;

    /* Remove focus outline */
    &:focus {
        outline: none;
    }

    /* <option> colors */
    option {
        color: inherit;
    }
}

@media only screen and (max-width: 900px) {
    .setting {
        flex-direction: column;
    }

    input {
        width: 100%;
    }

    
}


@media only screen and (max-width: 900px) {
    .settings-text{
        justify-content: center;
        text-align: center;
    }
}

.settings-linked-container {
    font-size: 1em;
    font-style: italic;

    >span:nth-child(2) {
        font-weight: bold;
        font-style: normal;
        font-size: 1.25em;
        padding-left: 10px;
    }
}