/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
.Frame,
.UserInput,
.Content,
.Footer {
    padding: .3rem;
    /* margin: .3rem; */
    /* ---------- */
    border-radius: .5rem;
    border-width: 1px;
    border-color: 0xf00;
    border-style: solid;
    box-sizing: border-box;
}

.Frame::after {
    content: "";
    clear: both;
    display: block;
}

/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
.Frame {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: .2rem;
    height: 100%;
}

/* ---------------------------------------------------- */
.UserInput {
    position: relative;
    flex: 1;
}

/* ---------------------------------------------------- */
.Content {
    position: relative;
    flex: 5;
}

/* ---------------------------------------------------- */
.Footer {
    position: relative;
    flex: 1;
}

/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
.InputSearch {
    border-radius: .3rem;
    border-width: 0.1rem;
    border-color: #333;
    border-style: solid;
    padding: .4rem;
    box-sizing:border-box;
}
::placeholder{
    font-style: italic;
    color: #bbb;
}

/* ---------------------------------------------------- */
.InputImage {
    margin: 0;
    padding: 0;
    height: 1rem;
    width: 1rem;
}