/* =========================== Checked ===================== */
.modal {
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    /* Important to stop default from browser */
    padding: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    z-index: 6;
}

.modal-content {
    display: flex;
    flex-direction: column;

    width: 98%;
    max-width: 400px;

    margin-top: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2px;

    border: 2px solid black;
    border-radius: 5px;

    background-color: var(--light-bg);
    z-index: 8;
}

.modal select {
    width: 80%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}

.modal button {
    width: 200px;
    height: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    border: 1px solid black;
    border-radius: 4px;
    background-color: var(--primary);
    color: var(--primary-text);
}

.modal button:hover {
    cursor: pointer;
    height: 26px;
}

/* this is too generic of a selector I think */
.selected-file {
    border: 2px solid var(--primary);
    border-radius: 4px;
}

/* UNCHECKED */