form {
    width: 100%;
}

.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: #fff
}

.advanced-search:hover{
    background-color: #bc2c1a;
    color: #fff;
}

.add-entry {
    background-color: #fff;
}

.add-entry:hover{
    background-color: #bc2c1a;
    color: #fff;
}

input, textarea, select {
    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;    /* adds gap underneath widget */
    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: #000;
    color: #d6d3d7;
    border: 1px solid #000;
    border-radius: 0 5px 5px 0;
    display: inline-block;
    padding: 10px;
}

.submit:hover {
    background-color: #000;
}

/* Add Entry Rules... */
.add-entry-form {
    text-align: center;
}

.add-form {
    max-width: 700px;
    display: inline-block;
    text-align: center;
}

.add-widget {
    width: 650px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.add-submit{
    padding: 10px;
    font-size: 14pt;
    font-weight: bold;
}