.remove-entry-button {
    min-width: unset;
    background-color: white;
    color: darkred;
    border-width: 1px;
    border-color: darkred;
    height: unset;
    border-radius: 6px;
    font-size: 21px;
    width: 32px;
    cursor: pointer;
}
.remove-entry-button:hover {
    color: #fff;
    background-color: #8b00003d;
}
.remove-entry-button img {
    vertical-align: baseline; /* restoring after bootstrap */
}
.remove-entry-button:focus,
.remove-entry-button:active,
.remove-entry-button:focus:active {
    /* restoring after bootstrap */
    background-color: #fff;
    border-color: darkred;
}
input::placeholder,
textarea::placeholder {
    color: #c2c2c2;
}
input:not([type="file"]), select, textarea {
    color: #0055FF;
    font-weight: normal;
    border-radius: 5px;
    border: 1px solid rgba(0,85,255,0.42);
    padding: 6px 9px;
}
input:not([type="submit"]):focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #108694;
}
input:not([type="button"]):not([type="submit"]):not(:valid):not(:disabled):not(:read-only),
textarea:not(:valid):not(:disabled),
select:not(:valid):not(:disabled) {
    border-color: #c27725;
}
input[type="checkbox"] {
    margin-right: 10px;
}
input:not([type="button"]):not([type="submit"])[disabled],
select[disabled],
textarea[disabled] {
    background-color: #f8fbff;
    color: #a7bfef;
    border: 1px solid rgb(0 118 255 / 18%);
    cursor: not-allowed;
}