html {
    background-color: #4D4545;
}

html,
body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

body {
    height: 100%;
    width: 70%;
    justify-self: center;
    align-self: center;
}

header,
main,
footer {
    background-color: #4D4545;
    color: white;
}

.nav-base {
    align-self: start;
}

.nav-base .nav-link {
    color: white;
    background-color: #635C5C !important;
    padding-left: 1em;
}

/* Error Stuff */
.error {
    background-color: #635C5C;
    width: 100%;
    height: 50em;
    color: white;
    display: flex;
    /* align-items: center;
    justify-content: center; */
    flex-direction: column;
    border-radius: 5px;
}

.searched-summoner {
    background-color: #4D4545;
    display: flex;
    flex-direction: row;
    margin-left: 0.5em;
    margin-right: 0.5em;
    height: 50px;
    margin-top: 0.25em;
    border-radius: 5px;
}

.searched-summoner img {
    margin-left: 0.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    width: 32px;
    height: 32px;
}

.searched-name {
    margin-left: 0.5em;
    color: white;
    margin-top: 0.5em;
}

.error .not-found {
    margin-left: 0.5em;
}

/* Search bar */
.summoner-search {
    min-width: 100%;
    max-width: 100%;
    flex-direction: row;
    display: flex;
}

.search-form {
    width: 100%;
    color: #4D4545;

}

.summoner-search {
    display: flex;
    flex-direction: row;
    min-width: 100%;
    max-width: 100%;
    height: 40px;
    justify-content: center;
}

.summoner-search .search,
.summoner-search .region {
    min-width: 60px;
    max-width: 10%;
    flex: 1;
    height: 100%;
}

#id_region {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#id_name {
    border: none;
    border-radius: 0;
}

#id_search {
    color: #4D4545;
    background-color: white;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border-left: 0;
    border-color: white;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

#id_name,
#id_region,
#id_search {
    width: 100%;
    height: 100%;
    border: 0;
}

.summoner-search .name {
    max-width: 80%;
    flex: 1;
    height: 100%;
}