.saved-search-form--body {
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px 24px 36px 24px;
    gap: 10px;
    max-height: 236px;
}

.saved-search-form--footer {
    display: flex;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: #F4F5F7;
}

.saved-search-form--button-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.saved-search-form--submit-button,
.saved-search-form--delete-button,
.saved-search-form--cancel-button {
    display: inline-flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    border-radius: 8px;

    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.saved-search-form--submit-button {
    border: 1px solid #155EEF;
    background: #155EEF;
    color: #FFF;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.saved-search-form--submit-button:hover {
    background: #0040C1;
}

.saved-search-form--submit-button.disabled {
    cursor: not-allowed;
    border: 1px solid #CC0F2F;
    opacity: 0.35;
    background: #FFF;
    color: #101828;
    box-shadow: 0 0 0 4px rgba(237, 32, 61, 0.24);
}

.saved-search-form--delete-button {
    color: #A30C25;
}

.saved-search-form--delete-button:hover {
    background: #FDD8DE;
    color: #7B091C;
}

.saved-search-form--cancel-button {
    border: 1px solid #D0D5DD;
    background: #FFF;
    color: #344054;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.saved-search-form--cancel-button:hover {
    background: #F9FAFB;
    color: #1D2939;
}
