/* CSS for favorites */
.input-group {
    position: relative;
    width: 100%;
}


.delete-button {
    width: 220px;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.delete-button:hover {
    background-color: #000;
    color: #fff;
}

.delete-button svg {
    width: 24px;
    height: 24px;
    background: #000;
}
