form {
    width: 150%;
}

.search {
    background: #fff;
    width: 200px;
}

.advanced {
    background-color: #fff;
    border-radius: 10px;
    width: 275px;
}

.advanced-button {
    padding: 10px;
    display: flex;
    font-weight: bold;
    justify-content: space-evenly;
}

.advanced-search {
    background-color: #ebb94e;
}

.advanced-search:hover{
    background-color: #BA9548;
    color: #fff;
}

.add-entry {
background-color: #f26464
}

.add-entry:hover{
background-color: #A52422;
color: #fff;
}

input, textarea, select {
    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;    /* adds gap underneath widgets */
    display: inline-block;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 100%;
}

.quicksearch {
    border-radius: 5px 0 0 5px;
    display: inline-block;
}


.submit ::-moz-focus-inner {
    border: 0;
}

.submit {
    position:relative;
    width: 45px;
    font-size: 14px;

    left: -5px;
    background-color: #CBB69A;
    color:#fff;
    border: 1px solid #000;
    border-radius: 0 5px 5px 0;
    display: inline-block;
    padding: 10px;
}

/* Add Entry Rules... */
.add-entry-form {
    text-align: center;
}

.add-form {
    max-width: 700px;
    display: inline-block;
    text-align: left;
}

.add-widget {
    width: 650px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.add-submit{
    padding: 10px;
    font-size: 14pt;
    font-weight: bold;
}